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
public class PDFReadingParameter
Attributes
| Attribute | Type |
|---|---|
mode |
PDFReadingMode |
dpi |
int |
rasterDataSource |
RasterDataSource |
mode
The mode of PDF reading.
EnumPDFReadingMode mode;
See Also
dpi
The DPI (dots per inch) value.
int dpi;
rasterDataSource
The raster data source type.
EnumRasterDataSource rasterDataSource;
See Also
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_RASTERdpi: 300rasterDataSource: EnumRasterDataSource.RDS_RASTERIZED_PAGES
Dispose
Releases all resources used by current object.
void Dispose()