views:

50

answers:

3

Is there any crossplatform small\portable C image editing library?

+3  A: 

ImageMagick is cross-platform and may meet your needs.

Depending upon the image formats you need to support, you can look into libraries such as libjpeg.

Justin Ethier
Or the fork of ImageMagick, GraphicsMagick (it's meant to have a stable API which IM didn't used to have, even remotely)
Spudd86
A: 

check out ImageMagic, its cross playform and has APIs for C and C++

luke
+3  A: 

The IM library is cross platform and supports a very wide array of operations on images out of the box. It can also be extended. Its close relative CD is also occasionally useful for creating text and line art to annotate an image. Both are readily scripted from Lua.

RBerteig