Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 411 Bytes

README.md

File metadata and controls

24 lines (16 loc) · 411 Bytes

qoiparser

A QOI image format parser / converter written in C++ based on the QOI file format specification

Build

mkdir build
cd build
cmake ..
make

Usage

Encode: 

./qoiparser -i "{input-file-path}.png" -o "{output-file-path}.qoi"

Decode: 

./qoiparser -i "{input-file-path}.qoi" -o "{output-file-path}.png"