SkillAgentSearch skills...

QoiSharp

QoiSharp is an implementation of the QOI https://github.com/phoboslab/qoi

Install / Use

/learn @NUlliiON/QoiSharp
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

<h1 align="center"> <img src="https://qoiformat.org/qoi-logo.svg" alt="QoiSharp" width="256"/> <br/> QoiSharp </h1>

Project status: active. What does it mean?

QoiSharp is an implementation of the QOI format for fast, lossless image compression

Supported functionality:

  • [x] Encoding
  • [x] Decoding

Installation

Install stable releases via Nuget

| Package Name | Release (NuGet) | |--------------------------------|-----------------| | QoiSharp | NuGet

API

Encoding

byte[] data = GetRawPixels();
int width = 1920;
int height = 1080;
var channels = Channels.RgbWithAlpha;
byte[] qoiData = QoiEncoder.Encode(new QoiImage(data, width, height, channels));

Decoding

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}");

Example Usage

Click here

TODOs

  • Streams
  • Benchmarks
  • CLI

License

QoiSharp is licensed under the MIT license.

Related Skills

View on GitHub
GitHub Stars69
CategoryDevelopment
Updated2mo ago
Forks10

Languages

C#

Security Score

100/100

Audited on Jan 13, 2026

No findings