Foxit PDF SDK
|
Public Member Functions | |
common::FillMode | GetFillMode () const |
Get fill mode. More... | |
common::Path | GetPathData () const |
Get the path data. More... | |
bool | GetStrokeState () const |
Get stroke state. More... | |
void | SetFillMode (common::FillMode fill_mode) |
Set fill mode. More... | |
void | SetPathData (const common::Path &path_data) |
Set the path data. More... | |
void | SetStrokeState (bool is_stroke) |
Set stroke state. More... | |
![]() | |
bool | AddClipPath (const common::Path &path, common::FillMode fill_mode) |
Add a path for clipping. More... | |
bool | AddClipTextObject (TextObject *textobject) |
Add text object for clipping. More... | |
bool | ClearClips () |
Clear all clips. More... | |
GraphicsObject * | Clone () |
Clone a new graphics object. More... | |
BlendMode | GetBlendMode () const |
Get the blend mode for transparent imaging model. More... | |
common::Path | GetClipPath (int index) const |
Get a path clip by index. More... | |
int | GetClipPathCount () const |
Get the count of path clip. More... | |
common::FillMode | GetClipPathFillMode (int index) const |
Get the fill mode of a path clip by index. More... | |
RectF | GetClipRect () const |
Get clip rectangle. More... | |
TextObject * | GetClipTextObject (int index) const |
Get the text object of a text clip by index. More... | |
int | GetClipTextObjectCount () const |
Get the count of text clip. More... | |
ColorState | GetColorState () const |
Get color state. More... | |
ARGB | GetFillColor () const |
Get the fill color. More... | |
float | GetFillOpacity () const |
Get the opacity value for painting operations other than stroking. More... | |
FormXObject * | GetFormXObject () const |
Get the form XObject graphics object if current graphics object represents a form XObject object. More... | |
common::GraphState | GetGraphState () const |
Get graph state. More... | |
ImageObject * | GetImageObject () const |
Get the image graphics object if current graphics object represents an image object. More... | |
LayerNodeArray | GetLayers (const LayerTree &layer_tree) |
Get all the layers which are associated with current graphics object. More... | |
MarkedContent * | GetMarkedContent () const |
Get marked content object. More... | |
Matrix | GetMatrix () const |
Get matrix. More... | |
PathObject * | GetPathObject () const |
Get the path graphics object if current graphics object represents a path object. More... | |
RectF | GetRect () const |
Get the rectangle of current graphics object. More... | |
ShadingObject * | GetShadingObject () const |
Get the shading graphics object if current graphics object represents a shading object. More... | |
ARGB | GetStrokeColor () const |
Get the stroke color. More... | |
float | GetStrokeOpacity () const |
Get opacity value for stroke painting operations for paths and glyph outlines. More... | |
TextObject * | GetTextObject () const |
Get the text graphics object if current graphics object represents a text object. More... | |
Type | GetType () const |
Get the type of current graphics object. More... | |
bool | HasTransparency () |
Check whether current graphics object has transparency or not. More... | |
void | Release () |
Release a cloned or newly created PDF graphics object which has not been inserted into any PDF page or other object. More... | |
bool | RemoveClipPath (int index) |
Remove a path clip by index. More... | |
bool | RemoveClipTextObject (int index) |
Remove a text clip by index for clipping. More... | |
void | Rotate (int angle) |
Rotate current graphics object from current state with specified angle degree in clockwise. More... | |
void | SetBlendMode (BlendMode blend_mode) |
Set the blend mode for transparent imaging model. More... | |
void | SetClipRect (const RectF &clip_rect) |
Set clip rectangle. More... | |
void | SetColorState (const ColorState &color_state) |
Set color state. More... | |
void | SetFillColor (ARGB color) |
Set the fill color. More... | |
void | SetFillOpacity (float opacity) |
Set the opacity value for painting operations other than stroking. More... | |
void | SetGraphState (const common::GraphState &graph_state) |
Set graph state. More... | |
void | SetMatrix (const Matrix &matrix) |
Set matrix. More... | |
void | SetStrokeColor (ARGB color) |
Set the stroke color. More... | |
void | SetStrokeOpacity (float opacity) |
Set opacity value for stroke painting operations for paths and glyph outlines. More... | |
bool | Transform (const Matrix &matrix, bool need_transform_clippath) |
Transform current graphics object. More... | |
Static Public Member Functions | |
static PathObject * | Create () |
Create a new path graphics object. More... | |
static PathObject * | CreateFromTextObject (const PDFPage &page, TextObject *text_obj) |
Create a path graphics object from a text object. More... | |
Additional Inherited Members | |
![]() | |
enum | BlendMode { e_BlendNormal = 0, e_BlendMultiply = 1, e_BlendScreen = 2, e_BlendOverlay = 3, e_BlendDarken = 4, e_BlendLighten = 5, e_BlendColorDodge = 6, e_BlendColorBurn = 7, e_BlendHardlight = 8, e_BlendSoftlight = 9, e_BlendDifference = 10, e_BlendExclusion = 11, e_BlendHue = 21, e_BlendSaturation = 22, e_BlendColor = 23, e_BlendLuminosity = 24 } |
Enumeration for render blend mode. More... | |
enum | Type { e_TypeAll = 0, e_TypeText = 1, e_TypePath = 2, e_TypeImage = 3, e_TypeShading = 4, e_TypeFormXObject = 5 } |
Enumeration for PDF graphics object type. More... | |
Path graphics object is a kind of PDF graphics object, so class PathObject is derived from class GraphicsObject. It offers functions to get/set path graphics object's data.
To create a new path graphics object, please use function PathObject::Create and then use setting functions to set information to the new path graphics object. Function PathObject::CreateFromTextObject can be used to create a path graphics object from a text graphics object.
|
static |
Create a new path graphics object.
The newly created path graphics object does not have any data yet. Then, setting functions can be called to set data to the new path graphics object.
|
static |
Create a path graphics object from a text object.
[in] | page | A valid PDF page object. |
[in] | text_obj | A text graphics object. It should not be NULL. Please ensure the text graphics object is in the PDF page specified by parameter page. |
common::FillMode foxit::pdf::graphics::PathObject::GetFillMode | ( | ) | const |
Get fill mode.
common::Path foxit::pdf::graphics::PathObject::GetPathData | ( | ) | const |
Get the path data.
bool foxit::pdf::graphics::PathObject::GetStrokeState | ( | ) | const |
Get stroke state.
void foxit::pdf::graphics::PathObject::SetFillMode | ( | common::FillMode | fill_mode | ) |
Set fill mode.
[in] | fill_mode | Fill mode. Please refer to values starting from common::e_FillModeNone and this should be one of these values. |
void foxit::pdf::graphics::PathObject::SetPathData | ( | const common::Path & | path_data | ) |
Set the path data.
[in] | path_data | A valid path object which represents the path data to be set. |
void foxit::pdf::graphics::PathObject::SetStrokeState | ( | bool | is_stroke | ) |
Set stroke state.
[in] | is_stroke | true means current path graphics object is to be stroked. false means current path graphics object is not to be stroked. |