Table of contents

PDFReadingParameter

The PDFReadingParameter class represents the parameters for reading a PDF file. It contains the mode of PDF reading, the DPI (dots per inch) value, and the raster data source type.

Definition

Namespace: Dynamsoft.Core

Assembly: Dynamsoft.Core.dll

public class PDFReadingParameter 

Attributes

Attribute Type
mode PDFReadingMode
dpi int
rasterDataSource RasterDataSource

mode

The mode of PDF reading.

EnumPDFReadingMode mode;

See Also

EnumPDFReadingMode

dpi

The DPI (dots per inch) value.

int dpi;

rasterDataSource

The raster data source type.

EnumRasterDataSource rasterDataSource;

See Also

EnumRasterDataSource

Methods

Method Description
PDFReadingParameter Default constructor of a PDFReadingParameter object.
Dispose Releases all resources used by current object.

PDFReadingParameter

Default constructor of a PDFReadingParameter object.

PDFReadingParameter()

Remarks

This constructor initializes the attributes with default values:

  • mode: EnumPDFReadingMode.PDFRM_RASTER
  • dpi: 300
  • rasterDataSource: EnumRasterDataSource.RDS_RASTERIZED_PAGES

Dispose

Releases all resources used by current object.

void Dispose()

This page is compatible for:

Is this page helpful?

YesYes NoNo

In this article: