PDFRasterizerType Enumeration |
PDFNet includes two separate rasterizer implementations utilizing different graphics libraries.
The default rasterizer is 'e_BuiltIn' which is a high-quality, anti-aliased and platform independent rasterizer.
This rasterizer is available on all supported platforms.
On Windows platforms, PDFNet also includes GDI+ based rasterizer.
(deprecated and will be removed in a future version of PDFNet)
This rasterizer is included mainly to provide vector output for printing, for EMF/WMF export, etc.
For plain image rasterization we recommend using the built-in rasterizer.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public enum PDFRasterizerType
Public Enumeration PDFRasterizerType
public enum class PDFRasterizerType
pdftron.PDF.PDFRasterizerType = function();
pdftron.PDF.PDFRasterizerType.createEnum('pdftron.PDF.PDFRasterizerType', false);
Members
| Member name | Value | Description |
---|
| e_BuiltIn | 0 | high-quality, platform independent rasterizer. |
| e_GDIPlus | 1 | GDI+ based rasterizer.(Deprecated) |
See Also