How to write multi page image to multiple blobs?
Posted: 2013-09-09T11:33:54-07:00
Hello,
How could I write a multi page Magick++ Image to multiple blobs (each page to separate blob)?
I have the multi page image in a vector:
and this writes all pages to 1 blob.
I want to write each page to separate blobs.
Thanks in advance!
How could I write a multi page Magick++ Image to multiple blobs (each page to separate blob)?
I have the multi page image in a vector:
Code: Select all
vector<Image> imagevector;
Blob my_blob;
writeImages( imagevector.begin(), imagevector.end(), &my_blob );
I want to write each page to separate blobs.
Thanks in advance!