|
Set the PDF Start Page when convert PDF file to another image format. When you input multipage PDF file, you may convert the PDF by page range. If your PDF file have 10 pages, you want to convert the page from 1-5. you may set PDFStartPage =1, PDFEndPage =5. If you want to convert all pages, you may set PDFStartPage =0, PDFEndPage =0.
Parameter int set the value of PDF start page.
Remark This property is Read/Write.
Example
|
C# using ImageConverterVsWrapper; ImageConverterVs obj = new ImageConverterVs(); obj.PDFScale = 2.0; obj.PDFStartPage= 1; obj.PDFEndPage = 5; bool bResult = obj.ConvertToImage(strinputpath1, stroutpath);
|
|
|