Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm looking for some image library that can work with multiple formats (jpg,gif,png), and is fast at displaying the images to the screen.

Also, it would be nice if I could specify only part of the image to render to the screen.

In the end I want to have lots of images on the screen that I can pan and zoom about.

This is for a personal project on my ppc powerbook, and I'd prefer if the library be in c++.

share|improve this question
What language and platform are you targeting? – kasperjj Nov 8 '08 at 1:47

closed as not constructive by Asad, C. A. McCann, KillianDS, Dominik Honnef, Mark Dec 2 '12 at 0:09

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

4 Answers

up vote 0 down vote accepted

There are also:

Check related questions

share|improve this answer

FreeImage.

That's for loading.

For displaying, you can either use the FreeImage methods to make a bitmap that you can then display in some control (depending on your UI).

For the real hotness in display, you'll then want to use OpenGL.

Also, in the meantime, I've discovered CImg, which isn't a library so much as a framework for doing lots of common imaging applications and works in C++.

share|improve this answer

ImageMagick has libraries in several languages to do what you want.

share|improve this answer

Imagemagick seems to be the gold standard and is used in all sorts of places. What sort of environment are you working in -- Linux? Windows?

share|improve this answer
i seriously doubt he's running windows on a PPC laptop... – Javier Nov 8 '08 at 4:08

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