✅ Project status: active. What does it mean?
QoiSharp is an implementation of the QOI format for fast, lossless image compression
Supported functionality:
- Encoding
- Decoding
Install stable releases via Nuget
Package Name | Release (NuGet) |
---|---|
QoiSharp |
byte[] data = GetRawPixels();
int width = 1920;
int height = 1080;
var channels = Channels.RgbWithAlpha;
byte[] qoiData = QoiEncoder.Encode(new QoiImage(data, width, height, channels));
var qoiImage = QoiDecoder.Decode(qoiData);
Console.WriteLine($"Width: {qoiImage.Width}");
Console.WriteLine($"Height: {qoiImage.Height}");
Console.WriteLine($"Channels: {qoiImage.Channels}");
Console.WriteLine($"Color space: {qoiImage.ColorSpace}");
Console.WriteLine($"Data length: {qoiImage.Pixels.Length}");
- Streams
- Benchmarks
- CLI
QoiSharp is licensed under the MIT license.