SVG to Anything Converter svg-to.com

September 18, 2025

By SVG-to.com Editorial Team

What is the QOI format?

The "Quite OK Image" (QOI) format was born out of frustration with the massive complexity of modern image codecs. Here is why developers love it.

The Problem with Modern Codecs

Formats like PNG, WebP, and AVIF are incredibly efficient at compressing data, but their specifications are hundreds of pages long. Writing an encoder or decoder from scratch for PNG requires implementing Deflate/zlib compression. AVIF requires a full AV1 video decoding stack.

In late 2021, developer Dominic Szablewski created QOI with a single goal: create a lossless image format that competes with PNG in file size, but can be encoded and decoded in just a few hundred lines of C code.

How QOI works

QOI doesn't use complex mathematical transforms or heavy dictionary compression. It processes pixels sequentially and uses incredibly simple heuristics:

The Result? Speed.

Because the math is so simple, QOI encodes 20-50x faster than PNG and decodes 3-4x faster, while producing files that are roughly the same size as a standard PNG.

When should you use QOI?

You generally won't use QOI for standard web design (HTML/CSS), as browser support is not native. However, it is fantastic for:

SVG-to.com supports exporting to QOI primarily for developers who need to ingest vector assets into custom engines or embedded interfaces quickly.