Go to file
Dominic Szablewski ee66591452
Merge pull request #32 from pfusik/utf8
Avoid UTF-8
2021-11-27 00:26:06 +01:00
.gitignore Initial 2021-11-24 11:07:17 +01:00
qoi.h Avoid UTF-8 2021-11-26 22:51:22 +01:00
qoibench.c Fix qoibench avg calculation: ignore non-png entries 2021-11-25 15:14:56 +01:00
qoiconv.c Initial 2021-11-24 11:07:17 +01:00
README.md Add warning about untrusted input; #4 2021-11-24 22:28:35 +01:00

QOI - The “Quite OK Image” format for fast, lossless image compression

Single-file MIT licensed library for C/C++

See qoi.h for the documentation.

More info at https://phoboslab.org/log/2021/11/qoi-fast-lossless-image-compression

⚠️ Please note that this library is not yet ready to deal with untrusted input.

Why?

Compared to stb_image and stb_image_write QOI offers 20x-50x faster encoding, 3x-4x faster decoding and 20% better compression. It's also stupidly simple and fits in about 300 lines of C.

Example Usage

  • qoiconv.c converts between png <> qoi
  • qoibench.c a simple wrapper to benchmark stbi, libpng and qoi