Reputation: 2506
Is there any open source C++ library using which I can convert an image present in .bmp format to .png . I went through libpng didn't find any way to do it there, while boost/gil looks complex don't know that can be used to do this job.
Upvotes: 3
Views: 4132
Reputation: 161
I use CImg for all my image manipulation. Well written, with good documentation.
Upvotes: 0
Reputation: 2624
I did not see BMP in boost/GIL.. maybe take a look at Magick++ ImageMagick API http://www.imagemagick.org/Magick++/tutorial/Magick++_tutorial.pdf
Also GDK-Pixbuf can certainly do this
Upvotes: 0