Reputation: 30963
How can I do simple thing like manipulate image programmatically ? ( with C++ I guess .. ) jpgs/png/gif .....
Upvotes: 3
Views: 2712
Reputation: 75683
Magick++ is a C++ API for the excellent ImageMagick library.
An advantage of ImageMagick is that it can be used from the command-line and a bunch of popular scripting and compiled languages too, and some of those might be more accessible to you than C++.
Upvotes: 2
Reputation: 111986
Depending on how fancy you want to get, you may want to look at OpenCV. It's a computer vision library that has functions ranging from reading and writing images to image processing to advanced things like object detection.
Upvotes: 2
Reputation: 2288
Using .NET you have two options:
If you want low level processing you can use unsafe code and pointers.
A Bitmap or Image is just a big array of bytes. You need to learn:
Upvotes: 2
Reputation: 12150
check out BOOST , it has a simple Image Processing Library called GIL. It also has extensions to import common formats.
http://www.boost.org/doc/libs/1_39_0/libs/gil/doc/index.html
Upvotes: 6