Replace colors across every frame of a GIF from the command line.
Project description
GIF Color Changer
Command line tool for replacing colors across every frame of a GIF.
Install
uv tool install gif-color-changer
From a local checkout:
uv tool install .
Usage
gifcc input.gif output.gif \
--map "#FFFFFF=#FF0000" \
--map "#000000=#00FF00"
Each --map is:
source_color=replacement_color
So this:
--map "#FFFFFF=#FF0000"
means:
replace white with red
You can pass as many mappings as you need. They run in order, and a pixel is only changed once.
Tolerance
GIF colors are often not exactly what they look like, especially after palette conversion or compression. Use --tolerance to match colors that are close to the source color.
gifcc input.gif output.gif \
--map "#FFFFFF=#FF0000" \
--tolerance 20
The default tolerance is 10.
Output
The script prints how many pixels were changed for each mapping:
(255, 255, 255) -> (255, 0, 0): changed 1234 pixel(s)
If a mapping says it changed 0 pixels, the source color probably does not exist in the GIF at that tolerance.
Uninstall
uv tool uninstall gif-color-changer
Development
Set up the repo:
uv sync
Run tests:
uv run pytest
Run tests against a specific Python version:
uv run --python 3.11 pytest
Or use the Makefile:
make test
make test-all
make test-3.11
Run the command without installing it as a tool:
uv run gifcc input.gif output.gif \
--map "#FFFFFF=#FF0000"
You can also run the compatibility wrapper directly:
uv run python main.py input.gif output.gif \
--map "#FFFFFF=#FF0000"
Build
uv build
That writes the package artifacts to dist/.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file gif_color_changer-0.2.0.tar.gz.
File metadata
- Download URL: gif_color_changer-0.2.0.tar.gz
- Upload date:
- Size: 3.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cf31632c68a85ed02cd42724575b1e66d5e94ee1e616adc242e7476e5b78eaaa
|
|
| MD5 |
6b063fad79236a7efe11a4504471ca83
|
|
| BLAKE2b-256 |
db3480c540cdd342155faf31c54a38df21a2cf32a6feed5466736be98e7c980d
|
File details
Details for the file gif_color_changer-0.2.0-py3-none-any.whl.
File metadata
- Download URL: gif_color_changer-0.2.0-py3-none-any.whl
- Upload date:
- Size: 4.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2808bd4d9b05b8da97320c86e5ce2867da67f281003c509cf4c6d9a403559f72
|
|
| MD5 |
7b2820870b9ec74f66c85971825ceb65
|
|
| BLAKE2b-256 |
3bca5a48296b8d9dfb6b69191c6e0cd384de60190c974ddf5ddfeeb0d6fa40ad
|