Convert N consecutive pages
Leave feedback
GroupDocs.Conversion provides the feature to convert N consecutive pages.
To convert consecutive pages, follow these steps:
- Create an instance of the Converter class and pass the source document path as a constructor parameter.
- Instantiate the appropriate ConvertOptions class e.g. (PdfConvertOptions, WordProcessingConvertOptions, SpreadsheetConvertOptions, etc.)
- Call the setPageNumber method of the ConvertOptions instance with the starting page number.
- Call the setPagesCount method of the ConvertOptions instance with the number of pages to be converted.
- Call the convert method of the Converter class instance and pass the filename of the converted document and the instance of ConvertOptions from the previous steps.
The following code snippet shows how to convert 3 consecutive pages starting from the second page of the source document:
import com.groupdocs.conversion.Converter;
import com.groupdocs.conversion.options.convert.PdfConvertOptions;
...
Converter converter = new Converter("sample.docx");
PdfConvertOptions options = new PdfConvertOptions();
options.setPageNumber(2);
options.setPagesCount(2);
converter.convert("converted.pdf", options);
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.