support for 128-color palette GIF?
Posted: 2009-10-09T09:24:35-07:00
I need to downsample an 8bit GIF file to a 7bit palette, in order to make the file smaller. I don't mean just changing the number of colors used in the image, I mean changing the size of the palette in the physical image file.
This may be a silly question, but is there any way to export (with "convert") a GIF image with a 128-color palette, rather than 256? I've tried using
But the resulting image is actually LARGER (filesize in Kb) than the original, 8-bit image.
Is there a particular compression setting, or maybe a dithering strategy I can use that will optimize well for the LZH compression?
This may be a silly question, but is there any way to export (with "convert") a GIF image with a 128-color palette, rather than 256? I've tried using
Code: Select all
convert 8bit.gif -depth 7 7bit.gif
Is there a particular compression setting, or maybe a dithering strategy I can use that will optimize well for the LZH compression?