Dither Guy is inspired by the Dither Boy software, used to create graphic dithering effects, similar to old screens.
Is a simple Python script that converts images to dithered images. It supports multiple dithering algorithms to achieve the effect. The script is written in Python and uses the Pillow library to process images.
To use the script, you need to have Python installed on your computer. You also need to install the dependencies using the following command:
pip install -r requirements.txt
After installing the dependencies, you can run the script using the following command:
python dither_guy.py
To generate an executable file, you can use the following command:
pyinstaller --onefile dither_guy.py
Note: You need to have the PyInstaller library installed on your computer to generate the executable file. You can install the PyInstaller library using the following command:
pip install pyinstaller