I've recently found ImageMagick and I'm reading up on how to use it. So far I'm very impressed with it's versatility as a tool and I'm shocked I haven't heard of it before!
My main area of interest is image quantization.
I want to reduce the colors of an image and then save the image in a full color format. For instance, if I reduce the colors of an image to 16 and load it in a paint program, I can see that it has a palette assigned. What I would like to do is save the image in full RGB.
The command I am currently using is:
Code: Select all
convert myImage.png +dither -colors 16 myNewImage.png
Thanks in advance.