Tagged Questions
2
votes
1answer
119 views
Assigning different palette indices to a paletted image
I'm writing a game with Python and Pygame. For this, the graphics will be in the style of old video game consoles like the NES. Therefore, the graphics consist of a single tileset file with 2-bit ...
1
vote
1answer
431 views
(Python) Set a specific palette in an image using PIL or PyPNG
I have a bunch of images that I am working on separately, that fit back together after being worked on. I'd like to compress them to a 8 bit image in order to save size. I'm currently doing this with ...
1
vote
1answer
163 views
Transparency is considered as black in windows and in program
I'm using the PIL python library to do some batch copy-pasting from image to image. I had it working yesterday, but suddenly when I restarted my computer, the program considers transparency as black, ...
1
vote
2answers
415 views
Generation of 8 bit palette from png file via Python
What would be the best python based library for generating 8-bit palette from the given .png file.
As in photoshop generating under .pal format.
PS: Input PNG is already in 8 bit format. (paletted)
...
5
votes
2answers
2k views
PIL: Convert RGB image to a specific 8-bit palette?
Using the Python Imaging Library, I can call
img.convert("P", palette=Image.ADAPTIVE)
or
img.convert("P", palette=Image.WEB)
but is there a way to convert to an arbitrary palette?
p = []
for i ...
6
votes
3answers
3k views
How to reduce color palette with PIL
I'm not sure how I would go about reducing the color palette of a PIL Image. I would like to reduce an image's palette to the 5 prominent colors found in that image. My overall goal is to do some ...