Foxit PDF SDK
|
Public Member Functions | |
common::Bitmap | CloneBitmap (const GraphicsObjects &graphics_objects) |
Clone the bitmap from current image graphics object. More... | |
ColorSpace | GetColorSpace () const |
Get color space. More... | |
objects::PDFObject * | GetMask () const |
Get the PDF object that represents the mask of current image graphics object. More... | |
objects::PDFStream * | GetStream () const |
Get image stream. More... | |
bool | IsImageMask () const |
Check if current image object is treated as mask. More... | |
void | SetBitmap (const common::Bitmap &bitmap, const common::Bitmap &mask=common::Bitmap()) |
Set a bitmap to current image graphics object. More... | |
void | SetImage (const common::Image &image, int frame_index) |
Set one frame of an image to current image graphics object. 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... | |
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 | 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 ImageObject * | Create (const PDFDoc &document) |
Create a new image graphics object. More... | |
Image graphics object is a kind of PDF graphics object, so class ImageObject is derived from class GraphicsObject. It offers functions to get/set image graphics object's data.
To create a new image graphics object, please use function ImageObject::Create and then use setting functions to set information to the new image graphics object.
Enumeration for image color space.
Values of this enumeration should be used alone.
common::Bitmap foxit::pdf::graphics::ImageObject::CloneBitmap | ( | const GraphicsObjects & | graphics_objects | ) |
Clone the bitmap from current image graphics object.
Currently, the bitmap can be cloned from image graphics object only when the bitmap format is one of following formats:
common::Bitmap::e_DIB8bppMask, common::Bitmap::e_DIB8bpp, common::Bitmap::e_DIBRgb, common::Bitmap::e_DIBRgb32, common::Bitmap::e_DIBArgb.
If the return value of function common::Bitmap::IsEmpty for the returned bitmap object is true, that means the DIB format of the bitmap is unsupported.
[in] | graphics_objects | A valid pdf::GraphicsObjects object. Please ensure that current image graphics object just belongs to this pdf::GraphicsObjects object (it may be a PDF page). |
|
static |
Create a new image graphics object.
The newly created image graphics object does not have any data yet. Then, setting functions can be called to set data to the new image graphics object.
[in] | document | A valid PDF document object. The new image graphics object should be inserted to one page of this PDF document then. |
ColorSpace foxit::pdf::graphics::ImageObject::GetColorSpace | ( | ) | const |
Get color space.
objects::PDFObject* foxit::pdf::graphics::ImageObject::GetMask | ( | ) | const |
Get the PDF object that represents the mask of current image graphics object.
The mask can be either a PDF dictionary or a PDF array:
Please refer to Section 4.8.4 "Image Dictionaries" in <PDF Reference 1.7> for more details.
objects::PDFStream* foxit::pdf::graphics::ImageObject::GetStream | ( | ) | const |
Get image stream.
bool foxit::pdf::graphics::ImageObject::IsImageMask | ( | ) | const |
Check if current image object is treated as mask.
void foxit::pdf::graphics::ImageObject::SetBitmap | ( | const common::Bitmap & | bitmap, |
const common::Bitmap & | mask = common::Bitmap() |
||
) |
Set a bitmap to current image graphics object.
[in] | bitmap | A valid bitmap object to be set to current image. |
[in] | mask | Mask bitmap. Default value: A bitmap object by default constructor and not set any value, which means no mask is used. If this is valid, its format should be common::Bitmap::e_DIB8bppMask. This is useful only when parameter bitmap does not have an alpha channel. |
void foxit::pdf::graphics::ImageObject::SetImage | ( | const common::Image & | image, |
int | frame_index | ||
) |
Set one frame of an image to current image graphics object.
Input image may contain multiple frames, and only one frame of the image can be set to current image graphics object.
[in] | image | A valid image object. This image should contain at least one frame and the image type should not be common::Image::e_Unknown. |
[in] | frame_index | Frame index used to decide which frame of parameter image is to be set. Valid range: from 0 to (count-1). count is returned by function common::Image::GetFrameCount. |