SKDocumentPdfMetadata Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
SKDocumentPdfMetadata(Int32) |
Creates a new instance of SKDocumentPdfMetadata with the specified encoding quality. |
SKDocumentPdfMetadata(Single) |
Creates a new instance of SKDocumentPdfMetadata with the specified raster DPI. |
SKDocumentPdfMetadata(Single, Int32) |
Creates a new instance of SKDocumentPdfMetadata with the specified raster DPI and encoding quality. |
SKDocumentPdfMetadata(Int32)
Creates a new instance of SKDocumentPdfMetadata with the specified encoding quality.
public SKDocumentPdfMetadata (int encodingQuality);
Parameters
- encodingQuality
- Int32
The encoding quality.
Remarks
The encoding quality is between 0 and 100. A quality of 101 indicates lossless encoding.
Applies to
SKDocumentPdfMetadata(Single)
Creates a new instance of SKDocumentPdfMetadata with the specified raster DPI.
public SKDocumentPdfMetadata (float rasterDpi);
Parameters
- rasterDpi
- Single
The DPI (pixels-per-inch) at which features without native PDF support will be rasterized.
Remarks
PDF pages are sized in point units. 1 pt == 1/72 inch == 127/360 mm.
Applies to
SKDocumentPdfMetadata(Single, Int32)
Creates a new instance of SKDocumentPdfMetadata with the specified raster DPI and encoding quality.
public SKDocumentPdfMetadata (float rasterDpi, int encodingQuality);
Parameters
- rasterDpi
- Single
The DPI (pixels-per-inch) at which features without native PDF support will be rasterized.
- encodingQuality
- Int32
The encoding quality.
Remarks
PDF pages are sized in point units. 1 pt == 1/72 inch == 127/360 mm. The encoding quality is between 0 and 100. A quality of 101 indicates lossless encoding.