New comer: Quantization question
Posted: 2009-07-21T06:38:55-07:00
Hi,
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:
How can I alter my steps to save the output PNG in a full color RGB format?
Thanks in advance.
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.