I got my problem solved. Whoever is interested here is part of the code
int main(int argc, char **argv) {
// ImageMagick Stuffs
InitializeMagick(*argv);
// vector<Blob> myblob(7);
vector<Image> imageList(7);
imageList[0].read("/cars/placa1/2.png");
imageList[1].read("/cars/placa1/4.png ...
Search found 3 matches
- 2013-11-01T09:18:30-07:00
- Forum: Magick++
- Topic: write multiple images for loop
- Replies: 1
- Views: 8548
- 2013-11-01T04:34:39-07:00
- Forum: Magick++
- Topic: write multiple images for loop
- Replies: 1
- Views: 8548
write multiple images for loop
I am working with Magick++ API on linux and I am reading multiple images, processing them in for loop and then I need to write them in the for loop as well passing the index value "i" to the filename. However I don't use sprintf, I use the method from Magick++ which is image.write();
How can do it ...
How can do it ...
- 2013-11-01T04:32:41-07:00
- Forum: Magick++
- Topic: How to write multi page image to multiple blobs?
- Replies: 5
- Views: 16550
Re: How to write multi page image to multiple blobs?
I am also interested on this. Can anyone help ? Thanks