Page 1 of 1

MultiPages PDF

Posted: Mon Mar 21, 2011 6:54 pm
by Marcio
Hi, i hope somebody can help me...i read the forum, but i don't found the solution...
There is my code:

string pdf_file = "C:\\test.pdf";
string imagePath = "C:\\TMP\\result.jpg";

GflAx.GflAx oGflAx = new GflAx.GflAx();
oGflAx.EpsDpi = 150;
oGflAx.LoadBitmap(pdf_file);
oGflAx.SaveJPEGQuality = 100;
oGflAx.SaveFormat = GflAx.AX_SaveFormats.AX_JPEG;
oGflAx.SaveBitmap(imagePath);

where the pdf is a multipage, with a lot off pages, but the result of this process show only the first page of the pdf.
it's any wrong with the command???

Thanks

Re: MultiPages PDF

Posted: Mon Mar 21, 2011 8:06 pm
by xnview
JPEG can only save 1 page.
you can use Page to load the page wanted...