Skip to content
ComPDF

Select Page Range for Conversion

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.

js
const options = {
  pageRanges: "1-3,5,7-9",
  outputDocumentPerPage: false
};