pixelart-palette-converter is a simple Python GUI application for converting images into pixel art style with a fixed color palette.
Example of an image conversion using a downsampling factor of 16 with Pillow's Lanczos resampling mode, grayscale conversion, brightness/contrast adjustments, and a four-color palette by Kerrie Lake. (Photo by me)
- Download and install git on your system: https://git-scm.com/downloads.
- Download and install the latest version of Python: https://www.python.org/downloads/.
- Clone this repository with:
git clone https://github.com/jmittendo/pixelart-palette-converter
- Create a virtual environment:
python -m venv .venv
- Activate the environment:
- Windows:
.venv\Scripts\activate
- Linux:
source .venv/bin/activate
- Windows:
- Upgrade pip inside the environment:
python -m pip install -U pip
- Install the required packages inside the environment:
pip install -r requirements.txt
After installing, activate the virtual environment if necessary (check installation step 5) and run the application with:
python pixelart_palette_converter.py