Foxit PDF SDK
|
Public Types | |
enum | ColorMode { e_ColorModeNormal = 0, e_ColorModeMapping = 2 } |
Enumeration for rendering color mode. More... | |
enum | ContentFlag { e_RenderPage = 0x01, e_RenderAnnot = 0x02 } |
Enumeration for rendering content flags. More... | |
Public Member Functions | |
Renderer (const Bitmap &bitmap, bool is_rgb_order) | |
Constructor, with bitmap. More... | |
Renderer (const Renderer &other) | |
Constructor, with another renderer object. More... | |
~Renderer () | |
Destructor. | |
void | EnableForPrint (bool is_render_for_print) |
Set the flag to decide whether to render annotations in print mode. More... | |
bool | IsEmpty () const |
Check whether current object is empty or not. More... | |
bool | operator!= (const Renderer &other) const |
Not equal operator. More... | |
Renderer & | operator= (const Renderer &other) |
Assign operator. More... | |
bool | operator== (const Renderer &other) const |
Equal operator. More... | |
bool | RenderAnnot (const pdf::annots::Annot &annot, const Matrix &matrix) |
Render a specified annotation. More... | |
bool | RenderFormControls (const pdf::PDFPage &page, const Matrix &matrix) |
Render form controls. More... | |
bool | RenderGraphicsObject (const pdf::graphics::GraphicsObject *graphics_object, const pdf::PDFPage &page, const Matrix &matrix) |
Render a graphics object. More... | |
void | SetClearType (bool is_clear_type) |
Set the flag to decide whether to use ClearType-like anti-aliasing to render text objects. More... | |
void | SetClipPathFill (const Path &clip_path, const Matrix &matrix, foxit::common::FillMode fill_mode) |
Set clipping path using filled region. More... | |
void | SetClipPathStroke (const Path &clip_path, const Matrix &matrix, const GraphState *graph_state=0) |
Set clipping path using stroked region. More... | |
void | SetClipRect (const RectI *clip_rect) |
Set the clipping rectangle which will be used in following rendering progress. More... | |
void | SetColorMode (ColorMode color_mode) |
Set color mode. More... | |
void | SetForceDownSample (bool is_to_force_down_sample) |
Set the flag to decide whether to use down-sampling for image stretching. More... | |
void | SetForceHalftone (bool is_to_force_halftone) |
Set the flag to decide whether to use halftone for image stretching. More... | |
void | SetLayerContext (const pdf::LayerContext &layer_context) |
Set layer context to render context handle. More... | |
void | SetMappingModeColors (ARGB background_color, ARGB foreground_color) |
Set background color and foreground color when color mode is Renderer::e_ColorModeMapping. More... | |
void | SetPrintTextAsGraphic (bool is_to_print_text_graphic) |
Set the flag to decide whether to print text as path or bitmap. More... | |
void | SetPrintTextAsImage (bool is_to_print_text_image) |
Set the flag to decide whether to print text as image. More... | |
void | SetRenderAnnotAppearanceType (foxit::pdf::annots::Annot::AppearanceType ap_type) |
Set the annotation's appearance type for rendering. More... | |
void | SetRenderContentFlags (uint32 render_content_flags) |
Set rendering flag to decide what content will be rendered. More... | |
void | SetRenderFormField (bool is_render_formfield) |
Set the flag to decide whether to render form fields (except signature fields). More... | |
void | SetRenderImageAntiAliasing (bool is_render_image_antialiasing) |
Set the flag to decide whether to draw image anti-aliasing. More... | |
void | SetRenderPathAntiAliasing (bool is_render_path_antialiasing) |
Set the flag to decide whether to draw path anti-aliasing. More... | |
void | SetRenderPathThinLine (bool is_render_path_thin_line) |
Set the flag to decide whether to draw path as thin line. More... | |
void | SetRenderSignature (bool is_render_signature) |
Set the flag to decide whether to render signatures or not. More... | |
void | SetRenderTextAntiAliasing (bool is_render_text_antialiasing) |
Set the flag to decide whether to draw text anti-aliasing. More... | |
Progressive | StartQuickRender (const pdf::PDFPage &page, const Matrix &matrix, PauseCallback *pause=0) |
Start to quickly render a PDF page, mainly for thumbnail purpose. More... | |
Progressive | StartRender (const pdf::PDFPage &page, const Matrix &matrix, PauseCallback *pause=0) |
Start to render a PDF page. More... | |
Progressive | StartRenderBitmap (const Bitmap &bitmap, const Matrix &matrix, const RectI *clip_rect=0, uint32 interpolation=0, PauseCallback *pause=0) |
Start to render a bitmap. More... | |
Progressive | StartRenderReflowPage (const pdf::ReflowPage &reflow_page, const Matrix &matrix, PauseCallback *pause=0) |
Start to render a reflow page. More... | |
Progressive | StartRenderXFAPage (const addon::xfa::XFAPage &xfa_page_view, const Matrix &matrix, bool is_highlight, PauseCallback *pause=0) |
Start to render an XFA page. More... | |
![]() | |
FS_HANDLE | Handle () const |
Get the handle of current object. More... | |
PDF renderer is a graphics engine and is used to render page to a bitmap or a platform device context. This class can be constructed with a bitmap, or a device object. It offers functions to set rendering options/flags, and do rendering. In this class, there are several ways to do rendering:
Widget annotation is always associated with form field and form control in Foxit PDF SDK. For how to render widget annotations, here is a recommended flow:
foxit::common::Renderer::Renderer | ( | const Bitmap & | bitmap, |
bool | is_rgb_order | ||
) |
Constructor, with bitmap.
The input bitmap is treated as an independent device and all the content rendered by the renderer would appear in the bitmap.
[in] | bitmap | A bitmap used for rendering. User should ensure the bitmap to keep valid until the end of life cycle of current renderer object. |
[in] | is_rgb_order | true means Foxit PDF SDK needs to use RGB byte-order (Red is in the lowest order) when rendering. false means Foxit PDF SDK needs to use BGR byte-order (Blue is in the lowest order) when rendering. |
foxit::common::Renderer::Renderer | ( | const Renderer & | other | ) |
Constructor, with another renderer object.
[in] | other | Another renderer object. |
void foxit::common::Renderer::EnableForPrint | ( | bool | is_render_for_print | ) |
Set the flag to decide whether to render annotations in print mode.
Please ensure this rendering flag is set as expected when current renderer is to used for printing. For rendering annotations, if this flag is set to be true, Foxit PDF SDK will only render annotations which have annotation flag pdf::annots::Annot::e_FlagPrint.
If this function is not called for current renderer object yet, default value false will be used.
[in] | is_render_for_print | true means to render in print mode, while false means to render not in print mode. |
bool foxit::common::Renderer::IsEmpty | ( | ) | const |
Check whether current object is empty or not.
When the current object is empty, that means current object is useless.
bool foxit::common::Renderer::operator!= | ( | const Renderer & | other | ) | const |
Not equal operator.
[in] | other | Another renderer object. This function will check if current object is not equal to this one. |
Assign operator.
[in] | other | Another renderer object, whose value would be assigned to current object. |
bool foxit::common::Renderer::operator== | ( | const Renderer & | other | ) | const |
Equal operator.
[in] | other | Another renderer object. This function will check if current object is equal to this one. |
bool foxit::common::Renderer::RenderAnnot | ( | const pdf::annots::Annot & | annot, |
const Matrix & | matrix | ||
) |
Render a specified annotation.
When this function is called, rendering flag (set by function Renderer::SetRenderContentFlags or by default) will be ignored.
[in] | annot | An annotation object to be rendered. If input annot is a pop-up annotation, this function will not render it and will return false. |
[in] | matrix | The transformation matrix used for rendering, which is usually returned by function pdf::PDFPage::GetDisplayMatrix. |
bool foxit::common::Renderer::RenderFormControls | ( | const pdf::PDFPage & | page, |
const Matrix & | matrix | ||
) |
Render form controls.
When this function is called, rendering flag (set by function Renderer::SetRenderContentFlags or by default) will be ignored.
[in] | page | A valid PDF page. If input page is invalid, this function do nothing and return false directly. |
[in] | matrix | The transformation matrix used for rendering, which is usually returned by function pdf::PDFPage::GetDisplayMatrix. |
bool foxit::common::Renderer::RenderGraphicsObject | ( | const pdf::graphics::GraphicsObject * | graphics_object, |
const pdf::PDFPage & | page, | ||
const Matrix & | matrix | ||
) |
Render a graphics object.
When this function is called, rendering flag (set by function Renderer::SetRenderContentFlags or by default) will be ignored.
[in] | graphics_object | A valid PDF graphics object to be rendered. |
[in] | page | A valid PDF page. Parameter graphics_object belongs to this PDF page. |
[in] | matrix | The transformation matrix used for rendering, which is usually returned by function pdf::PDFPage::GetDisplayMatrix. |
void foxit::common::Renderer::SetClearType | ( | bool | is_clear_type | ) |
Set the flag to decide whether to use ClearType-like anti-aliasing to render text objects.
If this function is not called, default value true will be used.
[in] | is_clear_type | true means to use ClearType-like anti-aliasing to render text objects. false means not to use ClearType-like anti-aliasing to render text objects. |
void foxit::common::Renderer::SetClipPathFill | ( | const Path & | clip_path, |
const Matrix & | matrix, | ||
foxit::common::FillMode | fill_mode | ||
) |
Set clipping path using filled region.
[in] | clip_path | A clipping path. |
[in] | matrix | The transformation matrix used for clipping. |
[in] | fill_mode | Fill mode. It should be value e_FillModeAlternate or e_FillModeWinding. |
void foxit::common::Renderer::SetClipPathStroke | ( | const Path & | clip_path, |
const Matrix & | matrix, | ||
const GraphState * | graph_state = 0 |
||
) |
Set clipping path using stroked region.
[in] | clip_path | A clipping path. |
[in] | matrix | The transformation matrix used for clipping. |
[in] | graph_state | New graph state, for pen attributes. It can be NULL. Default value: NULL. |
void foxit::common::Renderer::SetClipRect | ( | const RectI * | clip_rect | ) |
Set the clipping rectangle which will be used in following rendering progress.
[in] | clip_rect | A clipping rectangle. If it is NULL, that means not to use clipping rectangle in following rendering progress. |
void foxit::common::Renderer::SetColorMode | ( | ColorMode | color_mode | ) |
Set color mode.
If this function is not called, default value Renderer::e_ColorModeNormal will be used.
[in] | color_mode | Color mode value. It should be one of following values:
|
void foxit::common::Renderer::SetForceDownSample | ( | bool | is_to_force_down_sample | ) |
Set the flag to decide whether to use down-sampling for image stretching.
If this function is not called, default value false will be used.
[in] | is_to_force_down_sample | true means to use down-sampling for image stretching. false means not to use down-sampling for image stretching. |
void foxit::common::Renderer::SetForceHalftone | ( | bool | is_to_force_halftone | ) |
Set the flag to decide whether to use halftone for image stretching.
If this function is not called, default value true will be used.
[in] | is_to_force_halftone | true means to use halftone for image stretching. false means not to use halftone for image stretching. |
void foxit::common::Renderer::SetLayerContext | ( | const pdf::LayerContext & | layer_context | ) |
Set layer context to render context handle.
In order to render one layer when PDF page's contents is rendered on a rendering context, user should call this function to set the layer context to render context.
[in] | layer_context | A layer context object. |
Set background color and foreground color when color mode is Renderer::e_ColorModeMapping.
[in] | background_color | The background color. Format: 0xAARRGGBB. |
[in] | foreground_color | The foreground color. Format: 0xAARRGGBB. |
void foxit::common::Renderer::SetPrintTextAsGraphic | ( | bool | is_to_print_text_graphic | ) |
Set the flag to decide whether to print text as path or bitmap.
When this flag is true, Foxit PDF SDK will render text in different way: if font size is greater than 50, print text as path; otherwise, print text as bitmap.
If this function is not called, default value false will be used.
[in] | is_to_print_text_graphic | true means to print text as path or bitmap. false means not to print text as path or bitmap. |
void foxit::common::Renderer::SetPrintTextAsImage | ( | bool | is_to_print_text_image | ) |
Set the flag to decide whether to print text as image.
If this function is not called, default value false will be used.
[in] | is_to_print_text_image | true means to print text as image. false means not to print text as image. |
void foxit::common::Renderer::SetRenderAnnotAppearanceType | ( | foxit::pdf::annots::Annot::AppearanceType | ap_type | ) |
Set the annotation's appearance type for rendering.
[in] | ap_type | Type of annotation's appearance. Please refer to values starting from pdf::annots::Annot::e_AppearanceTypeNormal and this should be one of these values. |
void foxit::common::Renderer::SetRenderContentFlags | ( | uint32 | render_content_flags | ) |
Set rendering flag to decide what content will be rendered.
If this function is not called, default value (Renderer::e_RenderPage | Renderer::e_RenderAnnot) will be used.
[in] | render_content_flags | Rendering content flags. Please refer to values starting from Renderer::e_RenderPage and this should be one or a combination of these values. |
void foxit::common::Renderer::SetRenderFormField | ( | bool | is_render_formfield | ) |
Set the flag to decide whether to render form fields (except signature fields).
This flag is available only when flag Renderer::e_RenderAnnot is used for rendering. Please refer to function Renderer::SetRenderContentFlags about setting flag Renderer::e_RenderAnnot.
If this function is not called, default value true will be used when this flag is available.
[in] | is_render_formfield | true means to render form fields (except signature fields). false means not to render form fields (except signature fields). Default value: true. |
void foxit::common::Renderer::SetRenderImageAntiAliasing | ( | bool | is_render_image_antialiasing | ) |
Set the flag to decide whether to draw image anti-aliasing.
If this function is not called, default value true will be used.
[in] | is_render_image_antialiasing | true means to draw image anti-aliasing, and the effect would be similar to values defined in enum class InterpolationFlag. false means to draw image aliasing. |
void foxit::common::Renderer::SetRenderPathAntiAliasing | ( | bool | is_render_path_antialiasing | ) |
Set the flag to decide whether to draw path anti-aliasing.
If this function is not called, default value true will be used.
[in] | is_render_path_antialiasing | true means to draw path anti-aliasing. false means to draw path aliasing. |
void foxit::common::Renderer::SetRenderPathThinLine | ( | bool | is_render_path_thin_line | ) |
Set the flag to decide whether to draw path as thin line.
If this function is not called, default value false will be used.
[in] | is_render_path_thin_line | true means to draw path as thin line. false means not to draw path as thin line. |
void foxit::common::Renderer::SetRenderSignature | ( | bool | is_render_signature | ) |
Set the flag to decide whether to render signatures or not.
This flag is available only when flag Renderer::e_RenderAnnot is used for rendering. Please refer to function Renderer::SetRenderContentFlags about setting flag Renderer::e_RenderAnnot.
If this function is not called, default value true will be used when this flag is available.
[in] | is_render_signature | true means to render signatures. false means not to render signatures. |
void foxit::common::Renderer::SetRenderTextAntiAliasing | ( | bool | is_render_text_antialiasing | ) |
Set the flag to decide whether to draw text anti-aliasing.
If this function is not called, default value true will be used.
[in] | is_render_text_antialiasing | true means to draw text anti-aliasing. false means to draw text aliasing. |
Progressive foxit::common::Renderer::StartQuickRender | ( | const pdf::PDFPage & | page, |
const Matrix & | matrix, | ||
PauseCallback * | pause = 0 |
||
) |
Start to quickly render a PDF page, mainly for thumbnail purpose.
This function is mainly used for render a page for thumbnail purpose. The rendered content will not be completed: all the annotations will be ignored, event if flag Renderer::e_RenderAnnot is set by function Renderer::SetRenderContentFlags; text content will become blurred and will be replace by pixel point.
It may still take a long time to do this quick rendering when page has complex or large contents, so Foxit PDF SDK uses a progressive process to do this.
[in] | page | A valid PDF page. It should have been parsed. |
[in] | matrix | The transformation matrix used for rendering, which is usually returned by function pdf::PDFPage::GetDisplayMatrix. |
[in] | pause | Pause callback object which decides if the rendering process needs to be paused. This can be NULL which means not to pause during the rendering process. If this is not NULL, it should be a valid pause object implemented by user. Default value: NULL. |
Progressive foxit::common::Renderer::StartRender | ( | const pdf::PDFPage & | page, |
const Matrix & | matrix, | ||
PauseCallback * | pause = 0 |
||
) |
Start to render a PDF page.
It may take a long time to render a PDF page with complex or large contents, so Foxit PDF SDK uses a progressive process to do this.
Widget annotation is always associated with form field and form control in Foxit PDF SDK. For how to render widget annotations, here is a recommended flow:
[in] | page | A valid PDF page. If only to render annotations (that means only Renderer::e_RenderAnnot is set by function Renderer::SetRenderContentFlags), there is no need to parse the input page; otherwise the input page should have been parsed. |
[in] | matrix | The transformation matrix used for rendering, which is usually returned by function pdf::PDFPage::GetDisplayMatrix. |
[in] | pause | Pause callback object which decides if the rendering process needs to be paused. This can be NULL which means not to pause during the rendering process. If this is not NULL, it should be a valid pause object implemented by user. Default value: NULL. |
Progressive foxit::common::Renderer::StartRenderBitmap | ( | const Bitmap & | bitmap, |
const Matrix & | matrix, | ||
const RectI * | clip_rect = 0 , |
||
uint32 | interpolation = 0 , |
||
PauseCallback * | pause = 0 |
||
) |
Start to render a bitmap.
It may take a long time to render a bitmap with complex or large contents, so Foxit PDF SDK uses a progressive process to do this.
[in] | bitmap | A valid bitmap. User should ensure the bitmap to keep valid until current rendering process is finished. |
[in] | matrix | The transformation matrix used for rendering. This matrix is used as image matrix: assume that h is image height, w is image width, and then matrix [w 0 0 h 0 0] will produce an identical image. |
[in] | clip_rect | Clip rectangle for the rendering device. This can be NULL. Default value: NULL. |
[in] | interpolation | Bitmap interpolation flags. Please refer to values starting from Bitmap::e_Downsample and this can be one or a combination of these values. If not specify any flag, please use 0. Default value: 0. |
[in] | pause | Pause callback object which decides if the rendering process needs to be paused. This can be NULL which means not to pause during the rendering process. If this is not NULL, it should be a valid pause object implemented by user. Default value: NULL. |
Progressive foxit::common::Renderer::StartRenderReflowPage | ( | const pdf::ReflowPage & | reflow_page, |
const Matrix & | matrix, | ||
PauseCallback * | pause = 0 |
||
) |
Start to render a reflow page.
It may take a long time to render a reflow page with complex or large contents, so Foxit PDF SDK uses a progressive process to do this.
[in] | reflow_page | A valid reflow page. It should have been parsed. |
[in] | matrix | The transformation matrix used for rendering, which is usually returned by function pdf::ReflowPage::GetDisplayMatrix. |
[in] | pause | Pause callback object which decides if the rendering process needs to be paused. This can be NULL which means not to pause during the rendering process. If this is not NULL, it should be a valid pause object implemented by user. Default value:NULL. |
Progressive foxit::common::Renderer::StartRenderXFAPage | ( | const addon::xfa::XFAPage & | xfa_page_view, |
const Matrix & | matrix, | ||
bool | is_highlight, | ||
PauseCallback * | pause = 0 |
||
) |
Start to render an XFA page.
It will take a long time to render an XFA page with complex or large contents, so Foxit PDF SDK uses a progressive process to do this.
[in] | xfa_page_view | A valid XFA page. |
[in] | matrix | The transformation matrix used for rendering, which is usually returned by function addon::xfa::XFAPage::GetDisplayMatrix. |
[in] | is_highlight | true means to highlight XFA widgets, and false means not to highlight XFA widgets. |
[in] | pause | Pause callback object which decides if the rendering process needs to be paused. This can be NULL which means not to pause during the rendering process. If this is not NULL, it should be a valid pause object implemented by user. Default value: NULL. |