Convert N consecutive pages
GroupDocs.Conversion provides the feature to convert N consecutive pages.
Here are the steps to follow:
- Create new instance of Converter class and pass source document path as a constructor parameter
- Instantiate the proper ConvertOptions class e.g. (PdfConvertOptions, WordProcessingConvertOptions, SpreadsheetConvertOptions etc.)
- Set setPageNumber property of the ConvertOptions instance with the starting page number
- Set setPagesCount property of the ConvertOptions instance with the number of pages to be converted
- Call convert method of Converter class instance and pass filename for the converted document and the instance of ConvertOptions from the previous steps
Following code snippet shows how to convert 3 consecutive pages starting from second page of the source document:
Converter converter = new Converter("sample.docx");
PdfConvertOptions options = new PdfConvertOptions();
options.setPageNumber(2);
options.setPagesCount(2);
converter.convert("converted.pdf", options);