Interface ExtractImagesFromPdfArguments

interface ExtractImagesFromPdfArguments {
    pdfFilePath: string;
    quality?: number;
    scaling?: number;
}

Hierarchy

  • PdfExtractorArguments
    • ExtractImagesFromPdfArguments

Properties

pdfFilePath: string

The location of the PDF file

quality?: number

( iOS only ) The quality that each extracted image should have. This tweaks the compression, affecting the final image file size. (100: maximum quality, 0: minimum quality)

Default value is 90

scaling?: number

( iOS only ) Integer scaling factor applied to the PDF media box frame while extracting. Affects the output image quality. In most cases the recommended value is 2 or higher.

Default value is 2.