A QOI ("Quite OK Image Format") encoder/decoder implementation written in Zig.
This project is mainly for the purpose of learning Zig.
This project includes qoiconv - a CLI tool for converting image files to QOI format.
Usage:
zig build qoiconv -- <path to image file>
It uses zigimg for decoding image files. You can convert only images in formats which zigimg can decode.
This library can be used as a Wasm module.
Steps to run the Wasm sample application:
cd wasm_sample
npm run start
# open http://localhost:8080 in your browser and you'll find the sample app!