Create a fixed-color GIF image using Image Magick

I want to save .gif conversions of other images with the specified color palette. The "-remap cmap.gif" option in Image Magick

example: convert -remap cmap.gif input.png output.gif

The input.png process is active using the specified colors from cmap.gif, but it changes the order in the output color map. Is there a way to get Image Magick to use EXACTLY the same color palette?

I am trying to add new images to an ancient display program that accepts an input .gif file but uses fixed color correction without the ability to change the color map for individual images.

+5
source share
1 answer

+dither?

convert  input.png  -remap cmap.gif  +dither  output.gif
0

All Articles