Tagged Questions
6
votes
4answers
2k 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 ...
5
votes
1answer
647 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 ...
1
vote
1answer
89 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
220 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)
...
0
votes
1answer
123 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 ...