graphics conversion tools

This is an archive of a topic from NESdev BBS, taken in mid-October 2019 before a server upgrade.
View original topic
graphics conversion tools
by on (#147758)
I decided to release the graphics conversion tools I made for the "It Came from Planet Zilog" demo. Here's a link:

https://bitbucket.org/revelj/cgb-tools

Cheers,
Dalton
Re: graphics conversion tools
by on (#148325)
I threw together a little script (also python) to run all the other scripts in one pass. Link here: https://gist.github.com/jtrinklein/2d8bb6dbf8ac15daa347

also, I had a problem with the scripts. It appears that
Code:
from PIL import Image
doesn't work on all installations. Mine only worked when I changed it to
Code:
import Image
Re: graphics conversion tools
by on (#148425)
Nice! Good thing it was so easy to make it work on your platform. I actually ever ran it on windows xp.