PDF Generation Template Editor
Open-source visual PDF generation engine with customizable templates and developer-friendly APIs.
Open-source visual PDF generation engine with customizable templates and developer-friendly APIs.
ComPDF Conversion SDK supports converting a specified page range. When an empty string is passed, all pages will be converted. If the page range exceeds one page, you can also choose to enable the outputDocumentPerPage option to output each PDF page as a separate file. The following example demonstrates how to specify a page range when performing a conversion task:
WordOptions opt = new WordOptions();
opt.setOutputDocumentPerPage(true);
opt.setPageRanges("1-3,5,7-9");