-
Notifications
You must be signed in to change notification settings - Fork 27
Description
tiletool / paltool rely on PyGame (which relies on SDL_image) to load input images transparently, without having to care about the image file format. Currently, it expects a palette-based image but works equally well with palette-based png or gif images.
However recent version of SDL_image added support for stb_image as way to load .png files (instead of libpng), and std_image always returns a true-color surface to PyGame, as explained in their code:
// Paletted PNG, BMP, GIF, and PIC images are automatically depalettized.
This breaks tiletool / paltool as this mangles the pixel information from the file, and it removes the palette information from the SDL surface.
Consequently, PyGame returns different information to tiletool / paltool depending on how SDL_image is compiled (with or without stb_image). This is confusing and can't be easily avoided.