I'm developing a texture atlas packer to use with OpenGL, and I'm currently looking for an open-source (it's better if it's a library, but an open-source software would be good as well!) solution that will render the best results for color palette creation / dithering. It really doesn't need to be fast, but needs to achieve optimal results. It would be best if there is a possibility for 4-bit-per-pixel palette generation.

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

ImageMagick uses octtree, which is fast, but not the best quality.

pngquant uses MedianCut with several additional improvements, and is likely to give higher quality.

pngquant has speed/quality trade-off setting which can improve quality a bit further, and also has custom dithering algorithm (variation of Floyd-Steinberg) that doesn't add noise to well-quantized areas of the image.

link|improve this answer
well, I guess this is a best answer after all! Thank you!! – Waneck Jan 5 at 18:23
feedback

Imagemagick is a very powerful C library for graphical manipulation: http://www.imagemagick.org/ It has commandline tools, but can also be used as a C library.

link|improve this answer
Thank you! That will do. One question though, as I really need not the one with most features, but the one with the best dithering algorithm, do you know if their dithering algorithm is any good? – Waneck Sep 19 '11 at 10:09
feedback

For future reference, I found PNGNQ, which is a pretty good library for image quantization. Their samples are amazing.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.