vote up 7 vote down star
1

Do you know any open source/free software C++ libraries to manipulate images in these formats: .jpg .gif .png .bmp ? The more formats it supports, the better. I am implementing a free program in C++ which hides a text file into one or more images, using steganography.

I am working under Unix.

Thanks for any help in advance

flag

7 Answers

vote up 6 vote down check

ImageMagick can manipulate about anything and has interfaces for a dozen of languages, including the Magick++ API for C++.

link|flag
vote up 0 vote down

For .png images you could look into Cairo (and CairoMM). There's also Anti-Grain which people consider very fast.

link|flag
vote up 1 vote down

It takes some setting up, but I'm a fan of Adobe's GIL (now part of Boost).

link|flag
vote up 2 vote down

@lurks: I assume that you are looking for LSB shifting? I did some stego work a couple of years ago, and that's how it appeared most apps worked. It appears that ImageMagick (suggested by others) allows you to identify and manipulate the LSBs.

link|flag
vote up 0 vote down

I like vxl

link|flag
vote up 0 vote down

FreeImage is pretty solid. It has a C interface but is more C++-like in its implementation.

link|flag
vote up 0 vote down

Have you considered GDI?

-- Kevin Fairchild

link|flag

Your Answer

Get an OpenID
or

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