PdfLoadOptions.SkipPdfImages

PdfLoadOptions SkipPdfImages property. Gets or sets the flag indicating whether images must be skipped while loading PDF document. Default is false.

PdfLoadOptions.SkipPdfImages property

Gets or sets the flag indicating whether images must be skipped while loading PDF document. Default is false.

public bool SkipPdfImages { get; set; }

Examples

Shows how to skip images while reading PDF document.

PdfLoadOptions pdfLoadOptions = new PdfLoadOptions();
pdfLoadOptions.SkipPdfImages = true;

Converter.Create()
    .From(MyDir + "Simple.pdf", pdfLoadOptions)
    .To(ArtifactsDir + "PdfLoadOptions.SkipPdfImages.xps")
    .Execute();

See Also