Cairo: A Vector Graphics Library | ||||
---|---|---|---|---|
typedef cairo_t; cairo_t* cairo_create (cairo_surface_t *target); cairo_t* cairo_reference (cairo_t *cr); void cairo_destroy (cairo_t *cr); void cairo_save (cairo_t *cr); void cairo_restore (cairo_t *cr); cairo_status_t cairo_status (cairo_t *cr); cairo_surface_t* cairo_get_target (cairo_t *cr); void cairo_set_source_rgb (cairo_t *cr, double red, double green, double blue); void cairo_set_source_rgba (cairo_t *cr, double red, double green, double blue, double alpha); void cairo_set_source (cairo_t *cr, cairo_pattern_t *source); void cairo_set_source_surface (cairo_t *cr, cairo_surface_t *surface, double x, double y); cairo_pattern_t* cairo_get_source (cairo_t *cr); enum cairo_antialias_t; void cairo_set_antialias (cairo_t *cr, cairo_antialias_t antialias); cairo_antialias_t cairo_get_antialias (cairo_t *cr); void cairo_set_dash (cairo_t *cr, double *dashes, int num_dashes, double offset); enum cairo_fill_rule_t; void cairo_set_fill_rule (cairo_t *cr, cairo_fill_rule_t fill_rule); cairo_fill_rule_t cairo_get_fill_rule (cairo_t *cr); enum cairo_line_cap_t; void cairo_set_line_cap (cairo_t *cr, cairo_line_cap_t line_cap); cairo_line_cap_t cairo_get_line_cap (cairo_t *cr); enum cairo_line_join_t; void cairo_set_line_join (cairo_t *cr, cairo_line_join_t line_join); cairo_line_join_t cairo_get_line_join (cairo_t *cr); void cairo_set_line_width (cairo_t *cr, double width); double cairo_get_line_width (cairo_t *cr); void cairo_set_miter_limit (cairo_t *cr, double limit); double cairo_get_miter_limit (cairo_t *cr); enum cairo_operator_t; void cairo_set_operator (cairo_t *cr, cairo_operator_t op); cairo_operator_t cairo_get_operator (cairo_t *cr); void cairo_set_tolerance (cairo_t *cr, double tolerance); double cairo_get_tolerance (cairo_t *cr); void cairo_clip (cairo_t *cr); void cairo_clip_preserve (cairo_t *cr); void cairo_reset_clip (cairo_t *cr); void cairo_fill (cairo_t *cr); void cairo_fill_preserve (cairo_t *cr); void cairo_fill_extents (cairo_t *cr, double *x1, double *y1, double *x2, double *y2); cairo_bool_t cairo_in_fill (cairo_t *cr, double x, double y); void cairo_mask (cairo_t *cr, cairo_pattern_t *pattern); void cairo_mask_surface (cairo_t *cr, cairo_surface_t *surface, double surface_x, double surface_y); void cairo_paint (cairo_t *cr); void cairo_paint_with_alpha (cairo_t *cr, double alpha); void cairo_stroke (cairo_t *cr); void cairo_stroke_preserve (cairo_t *cr); void cairo_stroke_extents (cairo_t *cr, double *x1, double *y1, double *x2, double *y2); cairo_bool_t cairo_in_stroke (cairo_t *cr, double x, double y); void cairo_copy_page (cairo_t *cr); void cairo_show_page (cairo_t *cr);
cairo_t is the main object used when drawing with cairo. To
draw with cairo, you create a cairo_t, set the target surface,
and drawing options for the cairo_t, create shapes with
functions like cairo_move_to()
and cairo_line_to()
, and then
draw shapes with cairo_stroke()
or cairo_fill()
.
cairo_t's can be pushed to a stack via cairo_save()
.
They may then safely be changed, without loosing the current state.
Use cairo_restore()
to restore to the saved state.
typedef struct _cairo cairo_t;
A cairo_t contains the current state of the rendering device, including coordinates of yet to be drawn shapes.
cairo_t* cairo_create (cairo_surface_t *target);
Creates a new cairo_t with all graphics state parameters set to
default values and with target
as a target surface. The target
surface should be constructed with a backend-specific function such
as cairo_image_surface_create()
(or any other
cairo_<backend>_surface_create
variant).
This function references target
, so you can immediately
call cairo_surface_destroy()
on it if you don't need to
maintain a separate reference to it.
|
target surface for the context |
Returns : |
a newly allocated cairo_t with a reference
count of 1. The initial reference count should be released
with cairo_destroy() when you are done using the cairo_t.
This function never returns NULL . If memory cannot be
allocated, a special cairo_t object will be returned on
which cairo_status() returns CAIRO_STATUS_NO_MEMORY .
You can use this object normally, but no drawing will
be done.
|
cairo_t* cairo_reference (cairo_t *cr);
Increases the reference count on cr
by one. This prevents
cr
from being destroyed until a matching call to cairo_destroy()
is made.
void cairo_destroy (cairo_t *cr);
Decreases the reference count on cr
by one. If the result
is zero, then cr
and all associated resources are freed.
See cairo_reference()
.
|
a cairo_t |
void cairo_save (cairo_t *cr);
Makes a copy of the current state of cr
and saves it
on an internal stack of saved states for cr
. When
cairo_restore()
is called, cr
will be restored to
the saved state. Multiple calls to cairo_save()
and
cairo_restore()
can be nested; each call to cairo_restore()
restores the state from the matching paired cairo_save()
.
It isn't necessary to clear all saved states before
a cairo_t is freed. If the reference count of a cairo_t
drops to zero in response to a call to cairo_destroy()
,
any saved states will be freed along with the cairo_t.
|
a cairo_t |
void cairo_restore (cairo_t *cr);
Restores cr
to the state saved by a preceding call to
cairo_save()
and removes that state from the stack of
saved states.
|
a cairo_t |
cairo_status_t cairo_status (cairo_t *cr);
Checks whether an error has previously occurred for this context.
|
a cairo context |
Returns : |
the current status of this context, see cairo_status_t |
cairo_surface_t* cairo_get_target (cairo_t *cr);
Gets the target surface for the cairo context as passed to
cairo_create()
.
This function will always return a valid pointer, but the result
can be a "nil" surface if cr
is already in an error state,
(ie. cairo_status()
!=
CAIRO_STATUS_SUCCESS
).
A nil surface is indicated by cairo_surface_status()
!=
CAIRO_STATUS_SUCCESS
.
|
a cairo context |
Returns : |
the target surface. This object is owned by cairo. To
keep a reference to it, you must call cairo_surface_reference() .
|
void cairo_set_source_rgb (cairo_t *cr, double red, double green, double blue);
Sets the source pattern within cr
to an opaque color. This opaque
color will then be used for any subsequent drawing operation until
a new source pattern is set.
The color components are floating point numbers in the range 0 to 1. If the values passed in are outside that range, they will be clamped.
|
a cairo context |
|
red component of color |
|
green component of color |
|
blue component of color |
void cairo_set_source_rgba (cairo_t *cr, double red, double green, double blue, double alpha);
Sets the source pattern within cr
to a translucent color. This
color will then be used for any subsequent drawing operation until
a new source pattern is set.
The color and alpha components are floating point numbers in the range 0 to 1. If the values passed in are outside that range, they will be clamped.
|
a cairo context |
|
red component of color |
|
green component of color |
|
blue component of color |
|
alpha component of color |
void cairo_set_source (cairo_t *cr, cairo_pattern_t *source);
Sets the source pattern within cr
to source
. This pattern
will then be used for any subsequent drawing operation until a new
source pattern is set.
Note: The pattern's transformation matrix will be locked to the
user space in effect at the time of cairo_set_source()
. This means
that further modifications of the current transformation matrix
will not affect the source pattern. See cairo_pattern_set_matrix()
.
XXX: I'd also like to direct the reader's attention to some (not-yet-written) section on cairo's imaging model. How would I do that if such a section existed? (cworth).
|
a cairo context |
|
a cairo_pattern_t to be used as the source for subsequent drawing operations. |
void cairo_set_source_surface (cairo_t *cr, cairo_surface_t *surface, double x, double y);
This is a convenience function for creating a pattern from surface
and setting it as the source in cr
with cairo_set_source()
.
The x
and y
parameters give the user-space coordinate at which
the surface origin should appear. (The surface origin is its
upper-left corner before any transformation has been applied.) The
x
and y
patterns are negated and then set as translation values
in the pattern matrix.
Other than the initial translation pattern matrix, as described
above, all other pattern attributes, (such as its extend mode), are
set to the default values as in cairo_pattern_create_for_surface()
.
The resulting pattern can be queried with cairo_get_source()
so
that these attributes can be modified if desired, (eg. to create a
repeating pattern with cairo_pattern_set_extend()
).
|
a cairo context |
|
a surface to be used to set the source pattern |
|
User-space X coordinate for surface origin |
|
User-space Y coordinate for surface origin |
cairo_pattern_t* cairo_get_source (cairo_t *cr);
Gets the current source pattern for cr
.
|
a cairo context |
Returns : |
the current source pattern. This object is owned by
cairo. To keep a reference to it, you must call
cairo_pattern_reference() .
|
typedef enum _cairo_antialias { CAIRO_ANTIALIAS_DEFAULT, CAIRO_ANTIALIAS_NONE, CAIRO_ANTIALIAS_GRAY, CAIRO_ANTIALIAS_SUBPIXEL } cairo_antialias_t;
Specifies the type of antialiasing to do when rendering text or shapes.
Use the default antialiasing for the subsystem and target device | |
Use a bilevel alpha mask | |
Perform single-color antialiasing (using shades of gray for black text on a white background, for example). | |
Perform antialiasing by taking advantage of the order of subpixel elements on devices such as LCD panels |
void cairo_set_antialias (cairo_t *cr, cairo_antialias_t antialias);
Set the antialiasing mode of the rasterizer used for drawing shapes.
This value is a hint, and a particular backend may or may not support
a particular value. At the current time, no backend supports
CAIRO_ANTIALIAS_SUBPIXEL
when drawing shapes.
Note that this option does not affect text rendering, instead see
cairo_font_options_set_antialias()
.
|
a cairo_t |
|
the new antialiasing mode |
cairo_antialias_t cairo_get_antialias (cairo_t *cr);
Gets the current shape antialiasing mode, as set by cairo_set_shape_antialias()
.
|
a cairo context |
Returns : |
the current shape antialiasing mode. |
void cairo_set_dash (cairo_t *cr, double *dashes, int num_dashes, double offset);
Sets the dash pattern to be used by cairo_stroke()
. A dash pattern
is specified by dashes
, an array of positive values. Each value
provides the user-space length of altenate "on" and "off" portions
of the stroke. The offset
specifies an offset into the pattern at
which the stroke begins.
If num_dashes
is 0 dashing is disabled.
If num_dashes
is 1 a symmetric pattern is assumed with alternating
on and off portions of the size specified by the single value in
dashes
.
If any value in dashes
is negative, or if all values are 0, then
cairo_t
will be put into an error state with a status of
CAIRO_STATUS_INVALID_DASH.
|
a cairo context |
|
an array specifying alternate lengths of on and off po |
|
the length of the dashes array |
|
an offset into the dash pattern at which the stroke should start |
typedef enum _cairo_fill_rule { CAIRO_FILL_RULE_WINDING, CAIRO_FILL_RULE_EVEN_ODD } cairo_fill_rule_t;
cairo_fill_rule_t is used to select how paths are filled. For both fill rules, whether or not a point is included in the fill is determined by taking a ray from that point to infinity and looking at intersections with the path. The ray can be in any direction, as long as it doesn't pass through the end point of a segment or have a tricky intersection such as intersecting tangent to the path. (Note that filling is not actually implemented in this way. This is just a description of the rule that is applied.)
If the path crosses the ray from left-to-right, counts +1. If the path crosses the ray from right to left, counts -1. (Left and right are determined from the perspective of looking along the ray from the starting point.) If the total count is non-zero, the point will be filled. | |
Counts the total number of intersections, without regard to the orientation of the contour. If the total number of intersections is odd, the point will be filled. |
void cairo_set_fill_rule (cairo_t *cr, cairo_fill_rule_t fill_rule);
Set the current fill rule within the cairo context. The fill rule is used to determine which regions are inside or outside a complex (potentially self-intersecting) path. The current fill rule affects both cairo_fill and cairo_clip. See cairo_fill_rule_t for details on the semantics of each available fill rule.
|
a cairo_t |
|
a fill rule, specified as a cairo_fill_rule_t |
cairo_fill_rule_t cairo_get_fill_rule (cairo_t *cr);
Gets the current fill rule, as set by cairo_set_fill_rule()
.
|
a cairo context |
Returns : |
the current fill rule. |
typedef enum _cairo_line_cap { CAIRO_LINE_CAP_BUTT, CAIRO_LINE_CAP_ROUND, CAIRO_LINE_CAP_SQUARE } cairo_line_cap_t;
enumeration for style of line-endings
void cairo_set_line_cap (cairo_t *cr, cairo_line_cap_t line_cap);
Sets the current line cap style within the cairo context. See cairo_line_cap_t for details about how the available line cap styles are drawn.
As with the other stroke parameters, the current line cap style is
examined by cairo_stroke()
, cairo_stroke_extents()
, and
cairo_stroke_to_path()
, but does not have any effect during path
construction.
|
a cairo context, as a cairo_t |
|
a line cap style, as a cairo_line_cap_t |
cairo_line_cap_t cairo_get_line_cap (cairo_t *cr);
Gets the current line cap style, as set by cairo_set_line_cap()
.
|
a cairo context |
Returns : |
the current line cap style. |
typedef enum _cairo_line_join { CAIRO_LINE_JOIN_MITER, CAIRO_LINE_JOIN_ROUND, CAIRO_LINE_JOIN_BEVEL } cairo_line_join_t;
void cairo_set_line_join (cairo_t *cr, cairo_line_join_t line_join);
Sets the current line join style within the cairo context. See cairo_line_join_t for details about how the available line join styles are drawn.
As with the other stroke parameters, the current line join style is
examined by cairo_stroke()
, cairo_stroke_extents()
, and
cairo_stroke_to_path()
, but does not have any effect during path
construction.
|
a cairo context, as a cairo_t |
|
a line joint style, as a cairo_line_join_t |
cairo_line_join_t cairo_get_line_join (cairo_t *cr);
Gets the current line join style, as set by cairo_set_line_join()
.
|
a cairo context |
Returns : |
the current line join style. |
void cairo_set_line_width (cairo_t *cr, double width);
Sets the current line width within the cairo context. The line width specifies the diameter of a pen that is circular in user-space.
As with the other stroke parameters, the current line cap style is
examined by cairo_stroke()
, cairo_stroke_extents()
, and
cairo_stroke_to_path()
, but does not have any effect during path
construction.
|
a cairo_t |
|
a line width, as a user-space value |
double cairo_get_line_width (cairo_t *cr);
Gets the current line width, as set by cairo_set_line_width()
.
|
a cairo context |
Returns : |
the current line width, in user-space units. |
double cairo_get_miter_limit (cairo_t *cr);
Gets the current miter limit, as set by cairo_set_miter_limit()
.
|
a cairo context |
Returns : |
the current miter limit. |
typedef enum _cairo_operator { CAIRO_OPERATOR_CLEAR, CAIRO_OPERATOR_SOURCE, CAIRO_OPERATOR_OVER, CAIRO_OPERATOR_IN, CAIRO_OPERATOR_OUT, CAIRO_OPERATOR_ATOP, CAIRO_OPERATOR_DEST, CAIRO_OPERATOR_DEST_OVER, CAIRO_OPERATOR_DEST_IN, CAIRO_OPERATOR_DEST_OUT, CAIRO_OPERATOR_DEST_ATOP, CAIRO_OPERATOR_XOR, CAIRO_OPERATOR_ADD, CAIRO_OPERATOR_SATURATE } cairo_operator_t;
void cairo_set_operator (cairo_t *cr, cairo_operator_t op);
Sets the compositing operator to be used for all drawing operations. See cairo_operator_t for details on the semantics of each available compositing operator.
XXX: I'd also like to direct the reader's attention to some (not-yet-written) section on cairo's imaging model. How would I do that if such a section existed? (cworth).
|
a cairo_t |
|
a compositing operator, specified as a cairo_operator_t |
cairo_operator_t cairo_get_operator (cairo_t *cr);
Gets the current compositing operator for a cairo context.
|
a cairo context |
Returns : |
the current compositing operator. |
void cairo_set_tolerance (cairo_t *cr, double tolerance);
Sets the tolerance used when converting paths into trapezoids.
Curved segments of the path will be subdivided until the maximum
deviation between the original path and the polygonal approximation
is less than tolerance
. The default value is 0.1. A larger
value will give better performance, a smaller value, better
appearance. (Reducing the value from the default value of 0.1
is unlikely to improve appearance significantly.)
|
a cairo_t |
|
the tolerance, in device units (typically pixels) |
double cairo_get_tolerance (cairo_t *cr);
Gets the current tolerance value, as set by cairo_set_tolerance()
.
|
a cairo context |
Returns : |
the current tolerance value. |
void cairo_clip (cairo_t *cr);
Establishes a new clip region by intersecting the current clip
region with the current path as it would be filled by cairo_fill()
and according to the current fill rule (see cairo_set_fill_rule()
).
After cairo_clip, the current path will be cleared from the cairo context.
The current clip region affects all drawing operations by effectively masking out any changes to the surface that are outside the current clip region.
Calling cairo_clip()
can only make the clip region smaller, never
larger. But the current clip is part of the graphics state, so a
temporary restriction of the clip region can be achieved by
calling cairo_clip()
within a cairo_save()
/cairo_restore()
pair. The only other means of increasing the size of the clip
region is cairo_reset_clip()
.
|
a cairo context |
void cairo_clip_preserve (cairo_t *cr);
Establishes a new clip region by intersecting the current clip
region with the current path as it would be filled by cairo_fill()
and according to the current fill rule (see cairo_set_fill_rule()
).
Unlike cairo_clip()
, cairo_clip_preserve preserves the path within
the cairo context.
The current clip region affects all drawing operations by effectively masking out any changes to the surface that are outside the current clip region.
Calling cairo_clip()
can only make the clip region smaller, never
larger. But the current clip is part of the graphics state, so a
temporary restriction of the clip region can be achieved by
calling cairo_clip()
within a cairo_save()
/cairo_restore()
pair. The only other means of increasing the size of the clip
region is cairo_reset_clip()
.
|
a cairo context |
void cairo_reset_clip (cairo_t *cr);
Reset the current clip region to its original, unrestricted state. That is, set the clip region to an infinitely large shape containing the target surface. Equivalently, if infinity is too hard to grasp, one can imagine the clip region being reset to the exact bounds of the target surface.
Note that code meant to be reusable should not call
cairo_reset_clip()
as it will cause results unexpected by
higher-level code which calls cairo_clip()
. Consider using
cairo_save()
and cairo_restore()
around cairo_clip()
as a more
robust means of temporarily restricting the clip region.
|
a cairo context |
void cairo_fill (cairo_t *cr);
A drawing operator that fills the current path according to the
current fill rule, (each sub-path is implicitly closed before being
filled). After cairo_fill, the current path will be cleared from
the cairo context. See cairo_set_fill_rule()
and
cairo_fill_preserve()
.
|
a cairo context |
void cairo_fill_preserve (cairo_t *cr);
A drawing operator that fills the current path according to the
current fill rule, (each sub-path is implicitly closed before being
filled). Unlike cairo_fill()
, cairo_fill_preserve preserves the
path within the cairo context.
See cairo_set_fill_rule()
and cairo_fill()
.
|
a cairo context |
void cairo_fill_extents (cairo_t *cr, double *x1, double *y1, double *x2, double *y2);
|
|
|
|
|
|
|
|
|
cairo_bool_t cairo_in_fill (cairo_t *cr, double x, double y);
|
|
|
|
|
|
Returns : |
void cairo_mask (cairo_t *cr, cairo_pattern_t *pattern);
A drawing operator that paints the current source
using the alpha channel of pattern
as a mask. (Opaque
areas of mask
are painted with the source, transparent
areas are not painted.)
|
a cairo context |
|
a cairo_pattern_t |
void cairo_mask_surface (cairo_t *cr, cairo_surface_t *surface, double surface_x, double surface_y);
A drawing operator that paints the current source
using the alpha channel of surface
as a mask. (Opaque
areas of surface
are painted with the source, transparent
areas are not painted.)
|
a cairo context |
|
a cairo_surface_t |
|
X coordinate at which to place the origin of surface
|
|
Y coordinate at which to place the origin of surface
|
void cairo_paint (cairo_t *cr);
A drawing operator that paints the current source everywhere within the current clip region.
|
a cairo context |
void cairo_paint_with_alpha (cairo_t *cr, double alpha);
A drawing operator that paints the current source everywhere within
the current clip region using a mask of constant alpha value
alpha
. The effect is similar to cairo_paint()
, but the drawing
is faded out using the alpha value.
|
a cairo context |
|
alpha value, between 0 (transparent) and 1 (opaque) |
void cairo_stroke (cairo_t *cr);
A drawing operator that strokes the current path according to the
current line width, line join, line cap, and dash settings. After
cairo_stroke, the current path will be cleared from the cairo
context. See cairo_set_line_width()
, cairo_set_line_join()
,
cairo_set_line_cap()
, cairo_set_dash()
, and
cairo_stroke_preserve()
.
|
a cairo context |
void cairo_stroke_preserve (cairo_t *cr);
A drawing operator that strokes the current path according to the
current line width, line join, line cap, and dash settings. Unlike
cairo_stroke()
, cairo_stroke_preserve preserves the path within the
cairo context.
See cairo_set_line_width()
, cairo_set_line_join()
,
cairo_set_line_cap()
, cairo_set_dash()
, and
cairo_stroke_preserve()
.
|
a cairo context |
void cairo_stroke_extents (cairo_t *cr, double *x1, double *y1, double *x2, double *y2);
|
|
|
|
|
|
|
|
|
cairo_bool_t cairo_in_stroke (cairo_t *cr, double x, double y);
|
|
|
|
|
|
Returns : |