 | RenderFlags Enumeration |
Page rendering flags. They can be combined with bit OR.
Namespace:
Patagames.Pdf.Enums
Assemblies:
Patagames.Pdf.Xamarin.iOS (in Patagames.Pdf.Xamarin.iOS.dll) Version: 4.84.2704
Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.84.2704
Syntax[FlagsAttribute]
public enum RenderFlags
<FlagsAttribute>
Public Enumeration RenderFlags
[FlagsAttribute]
public enum class RenderFlags
[<FlagsAttribute>]
type RenderFlags
/** @attribute FlagsAttribute */
public enum RenderFlags
Patagames.Pdf.Enums.RenderFlags = function();
Patagames.Pdf.Enums.RenderFlags.createEnum('Patagames.Pdf.Enums.RenderFlags', true);
Members
| Member name | Value | Description |
---|
| FPDF_NONE | 0 |
None
|
| FPDF_ANNOT | 1 |
Set if annotations are to be rendered.
|
| FPDF_LCD_TEXT | 2 |
Set if using text rendering optimized for LCD display.
|
| FPDF_NO_NATIVETEXT | 4 |
Don't use the native text output available on some platforms
|
| FPDF_GRAYSCALE | 8 |
Grayscale output.
|
| FPDF_DEBUG_INFO | 128 |
Set if you want to get some debug info. Please discuss with Foxit first if you need to collect debug info.
|
| FPDF_NO_CATCH | 256 |
Set if you don't want to catch exception.
|
| FPDF_RENDER_LIMITEDIMAGECACHE | 512 |
Limit image cache size.
|
| FPDF_RENDER_FORCEHALFTONE | 1024 |
Always use halftone for image stretching.
|
| FPDF_PRINTING | 2048 |
Render for printing.
|
| FPDF_REVERSE_BYTE_ORDER | 16 |
set whether render in a reverse Byte order, this flag only enable when render to a bitmap.
|
| FPDF_THUMBNAIL | 32768 |
Render page as a thumbnail
|
| FPDF_HQTHUMBNAIL | 32768 | Obsolete.
Render page as a thumbnail (high quality)
|
| FPDF_RENDER_NO_SMOOTHTEXT | 4096 |
Set to disable anti-aliasing on text.
|
| FPDF_RENDER_NO_SMOOTHIMAGE | 8192 |
Set to disable anti-aliasing on images.
|
| FPDF_RENDER_NO_SMOOTHPATH | 16384 |
Set to disable anti-aliasing on paths.
|
See Also