A simple C++ based code to handle encoding/decoding QOI format images. It also allows the user to do some modifications to the source image such as inverting the RGB values, flipping the image and rotating the image 90 degrees to the left some number of times.
- Run git clone
https://github.com/EliasObeid9-02/qoi_encoder_decoder
to clone this repository. - Run
cmake -S src/ -B build/
in the repository directory. - Go into the build direcotory and run
make install
.
1. Go to your home directory.
2. Go into the ```bin``` directory.
3. Run ```rm qoi_encoder_decoder``` in the ```bin``` directory to uninstall the program.
qoi_encoder_decoder dice.qoi
Optional Arguments:
-o
to specify the name of the output file (don't include file extension).-i
to invert the colors of the image.-f
to flip the image.-r COUNT
to specify how many time you want to rotate the image to the left.