DavidBuchanan314/ambiguous-png-packer

Replication

Closed this issue · 3 comments

I was wondering how I can replicate this with different reference images. Do I need to modify the python code in any way to match the images?

Not sure if related, but attempting to run the script on both macOS and Windows (Python 3.10.0) results in a ModuleNotFoundError (ModuleNotFoundError: No module named 'PIL'). Attempting to install it using pip results in ERROR: No matching distribution found for PIL.

You are missing the Pillow python package, install it by running:

pip install Pillow

NOTE: Pillow is the successor of PIL (Python image library), which can also be imported using PIL

That worked. Thank you!