Foxit PDF SDK
|
Public Member Functions | |
def | AddClipPath (path, fill_mode) |
Add a path for clipping. More... | |
def | AddClipTextObject (textobject) |
Add text object for clipping. More... | |
def | ClearClips () |
Clear all clips. More... | |
def | Clone () |
Clone a new graphics object. More... | |
def | GetBlendMode () |
Get the blend mode for transparent imaging model. More... | |
def | GetClipPath (index) |
Get a path clip by index. More... | |
def | GetClipPathCount () |
Get the count of path clip. More... | |
def | GetClipPathFillMode (index) |
Get the fill mode of a path clip by index. More... | |
def | GetClipRect () |
Get clip rectangle. More... | |
def | GetClipTextObject (index) |
Get the text object of a text clip by index. More... | |
def | GetClipTextObjectCount () |
Get the count of text clip. More... | |
def | GetColorState () |
Get color state. More... | |
def | GetFillColor () |
Get the fill color. More... | |
def | GetFillOpacity () |
Get the opacity value for painting operations other than stroking. More... | |
def | GetFormXObject () |
Get the form XObject graphics object if current graphics object represents a form XObject object. More... | |
def | GetGraphState () |
Get graph state. More... | |
def | GetImageObject () |
Get the image graphics object if current graphics object represents an image object. More... | |
def | GetLayers (layer_tree) |
Get all the layers which are associated with current graphics object. More... | |
def | GetMarkedContent () |
Get marked content object. More... | |
def | GetMatrix () |
Get matrix. More... | |
def | GetPathObject () |
Get the path graphics object if current graphics object represents a path object. More... | |
def | GetRect () |
Get the rectangle of current graphics object. More... | |
def | GetShadingObject () |
Get the shading graphics object if current graphics object represents a shading object. More... | |
def | GetStrokeColor () |
Get the stroke color. More... | |
def | GetStrokeOpacity () |
Get opacity value for stroke painting operations for paths and glyph outlines. More... | |
def | GetTextObject () |
Get the text graphics object if current graphics object represents a text object. More... | |
def | GetType () |
Get the type of current graphics object. More... | |
def | HasTransparency () |
Check whether current graphics object has transparency or not. More... | |
def | Release () |
Release a cloned or newly created PDF graphics object which has not been inserted into any PDF page or other object. More... | |
def | RemoveClipPath (index) |
Remove a path clip by index. More... | |
def | RemoveClipTextObject (index) |
Remove a text clip by index for clipping. More... | |
def | Rotate (angle) |
Rotate current graphics object from current state with specified angle degree in clockwise. More... | |
def | SetBlendMode (blend_mode) |
Set the blend mode for transparent imaging model. More... | |
def | SetClipRect (clip_rect) |
Set clip rectangle. More... | |
def | SetColorState (color_state) |
Set color state. More... | |
def | SetFillColor (color) |
Set the fill color. More... | |
def | SetFillOpacity (opacity) |
Set the opacity value for painting operations other than stroking. More... | |
def | SetGraphState (graph_state) |
Set graph state. More... | |
def | SetMatrix (matrix) |
Set matrix. More... | |
def | SetStrokeColor (color) |
Set the stroke color. More... | |
def | SetStrokeOpacity (opacity) |
Set opacity value for stroke painting operations for paths and glyph outlines. More... | |
def | Transform (matrix, need_transform_clippath) |
Transform current graphics object. More... | |
Static Public Attributes | |
e_BlendColor = _fsdk.GraphicsObject_e_BlendColor | |
Creates a color with the hue and saturation of the source color, and the luminosity of the backdrop color. More... | |
e_BlendColorBurn = _fsdk.GraphicsObject_e_BlendColorBurn | |
Darkens backdrop color to reflect the source color. More... | |
e_BlendColorDodge = _fsdk.GraphicsObject_e_BlendColorDodge | |
Brightens backdrop color to reflect source colors. More... | |
e_BlendDarken = _fsdk.GraphicsObject_e_BlendDarken | |
Select darker one of backdrop and source colors. More... | |
e_BlendDifference = _fsdk.GraphicsObject_e_BlendDifference | |
Subtracts the darker of the two constituent colors from lighter colors. More... | |
e_BlendExclusion = _fsdk.GraphicsObject_e_BlendExclusion | |
Creates a color with the hue of the source color, and the saturation and luminosity of the backdrop color. More... | |
e_BlendHardlight = _fsdk.GraphicsObject_e_BlendHardlight | |
Multiply or screens colors, depending on source color value. More... | |
e_BlendHue = _fsdk.GraphicsObject_e_BlendHue | |
Creates a color with the hue of the source color, and the saturation and luminosity of the backdrop color. More... | |
e_BlendLighten = _fsdk.GraphicsObject_e_BlendLighten | |
Select lighter one of backdrop and source colors. More... | |
e_BlendLuminosity = _fsdk.GraphicsObject_e_BlendLuminosity | |
Creates a color with the luminosity of the source color, and the hue and saturation of the backdrop color. More... | |
e_BlendMultiply = _fsdk.GraphicsObject_e_BlendMultiply | |
Multiply backdrop by source color values. More... | |
e_BlendNormal = _fsdk.GraphicsObject_e_BlendNormal | |
Selecting source color and ignoring backdrop color. More... | |
e_BlendOverlay = _fsdk.GraphicsObject_e_BlendOverlay | |
Multiply or screens colors, depending on backdrop color value. More... | |
e_BlendSaturation = _fsdk.GraphicsObject_e_BlendSaturation | |
Creates a color with the saturation of the source color, and the hue and luminosity of the backdrop color. More... | |
e_BlendScreen = _fsdk.GraphicsObject_e_BlendScreen | |
Multiply complements of backdrop by source color values, and then complement the result. More... | |
e_BlendSoftlight = _fsdk.GraphicsObject_e_BlendSoftlight | |
Darkens or lightens colors, depending on source color value. More... | |
e_TypeAll = _fsdk.GraphicsObject_e_TypeAll | |
Represents all graphics object types, only used as filter. | |
e_TypeFormXObject = _fsdk.GraphicsObject_e_TypeFormXObject | |
Form XObject graphics object. | |
e_TypeImage = _fsdk.GraphicsObject_e_TypeImage | |
Image graphics object. | |
e_TypePath = _fsdk.GraphicsObject_e_TypePath | |
Path graphics object. | |
e_TypeShading = _fsdk.GraphicsObject_e_TypeShading | |
Shading graphics object. | |
e_TypeText = _fsdk.GraphicsObject_e_TypeText | |
Text graphics object. | |
Content of a PDF page usually consists of a sequence of graphics objects. Each graphics object contains its state information, data and instructions for rendering.
Class GraphicsObject is the base class for all types of PDF graphics objects. It offers the base functions to get/set graphics object's common properties. For concrete graphics object types, please refer to derived classes.
To get or insert/remove a graphics object, please refer to class FoxitPDFSDKPython2.GraphicsObjects .
If any change is done to a PDF graphics object, please remember to call function FoxitPDFSDKPython2.GraphicsObjects.GenerateContent for FoxitPDFSDKPython2.GraphicsObjects object (to which current graphics object belongs). Please refer to comment of function FoxitPDFSDKPython2.GraphicsObjects.GenerateContent for more details.
def FoxitPDFSDKPython2.GraphicsObject.AddClipPath | ( | path, | |
fill_mode | |||
) |
Add a path for clipping.
[in] | path | Path data to be added to current graphics object. |
[in] | fill_mode | Fill mode for the input path. Please refer to values starting from FoxitPDFSDKPython2.e_FillModeNone and this should be one of these values. |
def FoxitPDFSDKPython2.GraphicsObject.AddClipTextObject | ( | textobject | ) |
Add text object for clipping.
[in] | textobject | Text object to be added for clipping. |
def FoxitPDFSDKPython2.GraphicsObject.ClearClips | ( | ) |
Clear all clips.
def FoxitPDFSDKPython2.GraphicsObject.Clone | ( | ) |
Clone a new graphics object.
Newly cloned graphics object is related to the same page with current graphics object by default. Newly cloned graphics object can only be used inside the PDF file which contains current graphics object. If the cloned graphics object is not inserted to any PDF page or other object, please remember to call function FoxitPDFSDKPython2.GraphicsObject.Release to release it when not use it any more.
def FoxitPDFSDKPython2.GraphicsObject.GetBlendMode | ( | ) |
Get the blend mode for transparent imaging model.
def FoxitPDFSDKPython2.GraphicsObject.GetClipPath | ( | index | ) |
Get a path clip by index.
[in] | index | Path clip index. Valid range: from 0 to (count-1). count is returned by function FoxitPDFSDKPython2.GraphicsObject.GetClipPath . |
def FoxitPDFSDKPython2.GraphicsObject.GetClipPathCount | ( | ) |
Get the count of path clip.
def FoxitPDFSDKPython2.GraphicsObject.GetClipPathFillMode | ( | index | ) |
Get the fill mode of a path clip by index.
[in] | index | Path clip index. Valid range: from 0 to (count-1). count is returned by function FoxitPDFSDKPython2.GraphicsObject.GetClipPath . |
def FoxitPDFSDKPython2.GraphicsObject.GetClipRect | ( | ) |
Get clip rectangle.
def FoxitPDFSDKPython2.GraphicsObject.GetClipTextObject | ( | index | ) |
Get the text object of a text clip by index.
[in] | index | Text clip index. Valid range: from 0 to (count-1). count is returned by function FoxitPDFSDKPython2.GraphicsObject.GetClipTextObjectCount . |
def FoxitPDFSDKPython2.GraphicsObject.GetClipTextObjectCount | ( | ) |
Get the count of text clip.
def FoxitPDFSDKPython2.GraphicsObject.GetColorState | ( | ) |
Get color state.
Text graphics object, path graphics object, and form XObject graphics object can have color state.
def FoxitPDFSDKPython2.GraphicsObject.GetFillColor | ( | ) |
Get the fill color.
Text graphics object, path graphics object, and form XObject graphics object can have this property. Function FoxitPDFSDKPython2.GraphicsObject.GetColorState can be used to get fille color in other color space, like CMYK color space.
def FoxitPDFSDKPython2.GraphicsObject.GetFillOpacity | ( | ) |
Get the opacity value for painting operations other than stroking.
def FoxitPDFSDKPython2.GraphicsObject.GetFormXObject | ( | ) |
Get the form XObject graphics object if current graphics object represents a form XObject object.
def FoxitPDFSDKPython2.GraphicsObject.GetGraphState | ( | ) |
Get graph state.
Form XObjet graphics object, path graphics object and text graphics object can have this property.
def FoxitPDFSDKPython2.GraphicsObject.GetImageObject | ( | ) |
Get the image graphics object if current graphics object represents an image object.
def FoxitPDFSDKPython2.GraphicsObject.GetLayers | ( | layer_tree | ) |
Get all the layers which are associated with current graphics object.
[in] | layer_tree | A valid layer tree. All the layer nodes in this layer tree will be enumerated in order to find which are associated with current graphics object. |
def FoxitPDFSDKPython2.GraphicsObject.GetMarkedContent | ( | ) |
Get marked content object.
def FoxitPDFSDKPython2.GraphicsObject.GetMatrix | ( | ) |
Get matrix.
def FoxitPDFSDKPython2.GraphicsObject.GetPathObject | ( | ) |
Get the path graphics object if current graphics object represents a path object.
def FoxitPDFSDKPython2.GraphicsObject.GetRect | ( | ) |
Get the rectangle of current graphics object.
def FoxitPDFSDKPython2.GraphicsObject.GetShadingObject | ( | ) |
Get the shading graphics object if current graphics object represents a shading object.
def FoxitPDFSDKPython2.GraphicsObject.GetStrokeColor | ( | ) |
Get the stroke color.
Text graphics object, path graphics object, and form XObject graphics object can have this property.
Function FoxitPDFSDKPython2.GraphicsObject.GetColorState can be used to get stroke color in other color space, like CMYK color space.
def FoxitPDFSDKPython2.GraphicsObject.GetStrokeOpacity | ( | ) |
Get opacity value for stroke painting operations for paths and glyph outlines.
def FoxitPDFSDKPython2.GraphicsObject.GetTextObject | ( | ) |
Get the text graphics object if current graphics object represents a text object.
def FoxitPDFSDKPython2.GraphicsObject.GetType | ( | ) |
Get the type of current graphics object.
def FoxitPDFSDKPython2.GraphicsObject.HasTransparency | ( | ) |
Check whether current graphics object has transparency or not.
def FoxitPDFSDKPython2.GraphicsObject.Release | ( | ) |
Release a cloned or newly created PDF graphics object which has not been inserted into any PDF page or other object.
def FoxitPDFSDKPython2.GraphicsObject.RemoveClipPath | ( | index | ) |
Remove a path clip by index.
[in] | index | Path clip index. Valid range: from 0 to (count-1). count is returned by function FoxitPDFSDKPython2.GraphicsObject.GetClipPath . |
def FoxitPDFSDKPython2.GraphicsObject.RemoveClipTextObject | ( | index | ) |
Remove a text clip by index for clipping.
[in] | index | Text clip index. Valid range: from 0 to (count-1). count is returned by function FoxitPDFSDKPython2.GraphicsObject.GetClipTextObjectCount . |
def FoxitPDFSDKPython2.GraphicsObject.Rotate | ( | angle | ) |
Rotate current graphics object from current state with specified angle degree in clockwise.
[in] | angle | Angle degree value, which is used to rotate current graphics object from current state in clockwise. Value range: from 0 to 360. Specially, if the input value is 0 or 360 (which means not to rotate current graphics object), current function will do nothing. |
def FoxitPDFSDKPython2.GraphicsObject.SetBlendMode | ( | blend_mode | ) |
Set the blend mode for transparent imaging model.
[in] | blend_mode | New blend mode. Please refer to values starting from FoxitPDFSDKPython2.GraphicsObject.e_BlendNormal and this should be one of these values. |
def FoxitPDFSDKPython2.GraphicsObject.SetClipRect | ( | clip_rect | ) |
Set clip rectangle.
New clip rectangle will be set with fill mode FoxitPDFSDKPython2.e_FillModeWinding by default.
[in] | clip_rect | New clip rectangle. |
def FoxitPDFSDKPython2.GraphicsObject.SetColorState | ( | color_state | ) |
Set color state.
Text graphics object, path graphics object, and form XObject graphics object can have this property. If try to set color state for rest unsupported types, exception FoxitPDFSDKPython2.e_ErrUnsupported will be thrown.
[in] | color_state | A color state object to be set to current graphics object. |
def FoxitPDFSDKPython2.GraphicsObject.SetFillColor | ( | color | ) |
Set the fill color.
Text graphics object, path graphics object, and form XObject graphics object can have color state. If try to set fill color for rest unsupported types, FoxitPDFSDKPython2.e_ErrUnsupported will be thrown.
For path graphics object, please ensure the fill mode is not FoxitPDFSDKPython2.e_FillModeNone ; otherwise the fill color will not have any effect on the path graphics object. Please refer to functions FoxitPDFSDKPython2.PathObject.GetFillMode and FoxitPDFSDKPython2.PathObject.SetFillMode to check and change the fill mode of a path graphics object.
Function FoxitPDFSDKPython2.GraphicsObject.SetColorState can be used to set fill color in other color space, like CMYK color space.
[in] | color | New color value, in format 0xAARRGGBB. |
def FoxitPDFSDKPython2.GraphicsObject.SetFillOpacity | ( | opacity | ) |
Set the opacity value for painting operations other than stroking.
[in] | opacity | The new opacity value. Valid range: 0.0 to 1.0. 0.0 means full transparency and 1.0 means full opaque. |
def FoxitPDFSDKPython2.GraphicsObject.SetGraphState | ( | graph_state | ) |
Set graph state.
Form XObjet graphics object, path graphics object and text graphics object (whose text mode is FoxitPDFSDKPython2.TextState.e_ModeStroke , FoxitPDFSDKPython2.TextState.e_ModeStrokeClip , FoxitPDFSDKPython2.TextState.e_ModeFillStroke or FoxitPDFSDKPython2.TextState.e_ModeFillStrokeClip ) can have this property. If try to set graph state to rest unsupported types, exception FoxitPDFSDKPython2.e_ErrUnsupported will be thrown.
[in] | graph_state | New graph state. |
def FoxitPDFSDKPython2.GraphicsObject.SetMatrix | ( | matrix | ) |
Set matrix.
[in] | matrix | New matrix value. |
def FoxitPDFSDKPython2.GraphicsObject.SetStrokeColor | ( | color | ) |
Set the stroke color.
Text graphics object, path graphics object, and form XObject graphics object can have this property. If current graphics object is a text graphics object and the text mode is FoxitPDFSDKPython2.TextState.e_ModeFill , the stroke color will not have effect on the text graphics object.
If try to set stroke color for rest unsupported types, exception FoxitPDFSDKPython2.e_ErrUnsupported will be thrown.
Function FoxitPDFSDKPython2.GraphicsObject.SetColorState can be used to set stroke color in other color space, like CMYK color space.
[in] | color | New color value, in format 0xAARRGGBB. |
def FoxitPDFSDKPython2.GraphicsObject.SetStrokeOpacity | ( | opacity | ) |
Set opacity value for stroke painting operations for paths and glyph outlines.
[in] | opacity | The new opacity value. Valid range: 0.0 to 1.0. 0.0 means full transparency and 1.0 means full opaque. |
def FoxitPDFSDKPython2.GraphicsObject.Transform | ( | matrix, | |
need_transform_clippath | |||
) |
Transform current graphics object.
[in] | matrix | Transform matrix. |
[in] | need_transform_clippath | true means to transform clip path with current graphics object. false means to transform current graphics object only. |
|
static |
Creates a color with the hue and saturation of the source color, and the luminosity of the backdrop color.
Here is the formula :
B(Cb, Cs) = SetLum(Cs, Lum(Cb)).
|
static |
Darkens backdrop color to reflect the source color.
Painting with white produces no changes.
Here is the formula :
B(Cb, Cs) = -1 - min(1, (1 - Cb) / Cs) if Cs > 0 -0 if Cs = 0
|
static |
Brightens backdrop color to reflect source colors.
Painting with black produces no changes.
Here is the formula :
B(Cb, Cs) = -min(1, Cb / (1 - Cs)) if Cs < 1 -1 if Cs = 1
|
static |
Select darker one of backdrop and source colors.
Here is the formula :
B(Cb, Cs) = min(Cb, Cs).
|
static |
Subtracts the darker of the two constituent colors from lighter colors.
Here is the formula :
B(Cb, Cs) = |Cb - Cs|.
|
static |
Creates a color with the hue of the source color, and the saturation and luminosity of the backdrop color.
Here is the formula :
B(Cb, Cs) = SetLum(SetSat(Cs, Sat(Cb)), Lum(Cb)).
|
static |
Multiply or screens colors, depending on source color value.
Here is the formula :
B(Cb, Cs) = -Multiply(Cb, 2 * Cs) if Cs <= 0.5 -Screen(Cb, 2 * Cs - 1) if Cs > 0.5
|
static |
Creates a color with the hue of the source color, and the saturation and luminosity of the backdrop color.
Here is the formula :
B(Cb, Cs) = SetLum(SetSat(Cs, Sat(Cb)), Lum(Cb)).
|
static |
Select lighter one of backdrop and source colors.
Here is the formula :
B(Cb, Cs) = max(Cb, Cs).
|
static |
Creates a color with the luminosity of the source color, and the hue and saturation of the backdrop color.
Here is the formula :
B(Cb, Cs) = SetLum(Cb, Lum(Cs)).
|
static |
Multiply backdrop by source color values.
Here is the formula :
B(Cb, Cs) = Cb * Cs.
|
static |
Selecting source color and ignoring backdrop color.
Here is the formula :
B(Cb, Cs) = Cs.
|
static |
Multiply or screens colors, depending on backdrop color value.
Here is the formula :
B(Cb, Cs) = HardLight(Cs, Cb).
|
static |
Creates a color with the saturation of the source color, and the hue and luminosity of the backdrop color.
Here is the formula :
B(Cb, Cs) = SetLum(SetSat(Cb, Sat(Cs)), Lum(Cb)).
|
static |
Multiply complements of backdrop by source color values, and then complement the result.
Here is the formula :
B(Cb, Cs) = 1 - [(1 - Cb) * (1 - Cs)] = Cb + Cs - Cb * Cs.
|
static |
Darkens or lightens colors, depending on source color value.
Here is the formula :
B(Cb, Cs) = -Cb - (1 - 2 * Cs) * Cb * (1 - Cb) if Cs <= 0.5 -Cb + (2 * Cs - 1) * (D(Cb) - Cb) if Cs > 0.5 where D(x) = -((16 * x - 12) * x + 4) * x if x <= 0.25 -sqrt(x) if x > 0.25