Search found 2 matches

by User6789
2014-11-17T06:45:13-07:00
Forum: Magick++
Topic: Read TIF multi-page
Replies: 2
Views: 9238

Re: Read TIF multi-page

Thanks Bonzo. The solution is reading a list of Images from a file. InitializeMagick(*argv); list<Image> imageList; readImages( &imageList, "input.tif" ); int page = 0; Image image = NULL; for (list<Image>::iterator i=imageList.begin(); i != imageList.end(); i++){ image = *i; image.wri...
by User6789
2014-11-17T05:53:11-07:00
Forum: Magick++
Topic: Read TIF multi-page
Replies: 2
Views: 9238

Read TIF multi-page

Hi,

I would appreciate any help.

I am reading a TIFF file that has more than one page. But I only have access to the first page, and I need to read information from all them.

Anyone know how could I read the rest of the pages?

Thanks.