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
651 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 ...
3
votes
0answers
103 views
How to convert 256 colors palettized RGBA image data to NSImage
I'm a newbie developer and I need your help with something that is probably trivial for you.
I have an image data in this pixel format: 256 colors palettized RGBA. It comes from FFmpeg (PIX_FMT_PAL8) ...
3
votes
3answers
1k views
PHP GD palette colors
In PHP GD how can you convert a truecolor image to a palette without losing any colors. With imagetruecolortopallete it doesn't work. I have a function that runs through all the colors and filters ...
0
votes
1answer
124 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 ...
0
votes
1answer
405 views
Can't set palette in bitmap
I have been writing a PCX decoder and, so far, the PCX image itself parses fine, but I can't work out how to set the palette of a bitmap.
I have created a bitmap like so:
Bitmap bmp = new ...
0
votes
2answers
241 views
DrawImage from one indexed Bitmap onto another C# .NET Framework 2.0
I have two indexed (8-bits) Bitamp, both using the same Palette in C# (.NET Framework 2.0). I want to bit block copy pixels from one onto another on designated coordinates. I had tried to use Graphics ...