The enabled flag indicates whether all pages in the document are converted to images and placed in a single PDF file. True by default; set to False to avoid rasterization.
The index of the first page (0-based) to convert into PDF.
Example
fromgroupdocs.redactionimportRedactorfromgroupdocs.redaction.optionsimportRasterizationOptions,PdfComplianceLevelwithRedactor("SomePresentation.pptx")asredactor:ro=RasterizationOptions()ro.page_index=0# first slidero.page_count=1ro.compliance=PdfComplianceLevel.PdfA1aredactor.save("PresentationFirstSlide.pdf",ro)