The Cairo graphics tutorial -------Cairo definitions

来源:互联网 发布:定格动画 软件 编辑:程序博客网 时间:2024/05/26 07:27

Cairo definitions

In this part of the Cairo graphics tutorial, we will provide some useful definitions for the Cairo graphics library.This will help us better understand the Cairo drawing model.

Context

To do some drawing in Cairo, we must first create a Cairo context. The Cairo context holds all of the graphics state parameters that describe how drawing is to be done. This includes information such as line width, color, the surface to draw to, and many other things. This allows the actual drawing functions to take fewer arguments to simplify the interface. Thegdk_cairo_create() function call creates a cairo context for drawing to drawable.

cairo_t *cr;cr = gdk_cairo_create(widget->window);

These two lines create a cairo context. In this example, the context is tied to aGdkDrawable. A cairo_t structure contains the current state of the rendering device, including coordinates of yet to be drawn shapes.Technically speaking, the cairo_t objects are called the Cairo contexts.

All drawing with cairo is always done to a cairo_t object. A Cairo context is tied to a specific surface. A pdf, svg, png, GdkDrawable etc.

The GDK does not wrap the Cairo API. It allows to create a Cairo context, which can be used to draw on GDK drawables. Additional functions allow to convert GDK's rectangles and regions into Cairo paths and to use pixbufs as sources for drawing operations.

Path

A path is made up of one or more lines. These lines are connected by two or more anchor points. Paths can be made up of straight lines and curves. There are two kinds of paths. Open and closed paths. In a closed path, starting and ending points meet. In an open path, starting and ending point do not meet.

In Cairo, we start with an empty path. First we define a path and then we make them visible by stroking and filling them. One important note. After eachcairo_stroke() or cairo_fill() function calls, the path is emptied. We have to define a new path.

A path is made of subpaths.

Source

The source is the paint we use in drawing. We can compare the source to a pen or ink, that we will use to draw theoutlines and fill the shapes. There are four kinds of basic sources. Colors, gradients, patterns and images.

Surface

The surface is a destination that we are drawing to. We can render documents using the PDF or PostScript surfaces, directly draw to a platform via the Xlib and Win32 surfaces.

The documentation mentions the following surfaces:

typedef enum _cairo_surface_type {  CAIRO_SURFACE_TYPE_IMAGE,  CAIRO_SURFACE_TYPE_PDF,  CAIRO_SURFACE_TYPE_PS,  CAIRO_SURFACE_TYPE_XLIB,  CAIRO_SURFACE_TYPE_XCB,  CAIRO_SURFACE_TYPE_GLITZ,  CAIRO_SURFACE_TYPE_QUARTZ,  CAIRO_SURFACE_TYPE_WIN32,  CAIRO_SURFACE_TYPE_BEOS,  CAIRO_SURFACE_TYPE_DIRECTFB,  CAIRO_SURFACE_TYPE_SVG,  CAIRO_SURFACE_TYPE_OS2} cairo_surface_type_t;

Mask

Before the source is applied to the surface, it is filtered first. The mask is used as a filter. The mask determines, where the sourse is applied and where not. Opaque parts of the mask allow to copy the source. Transparent parts do notlet to copy the source to the surface.

Pattern

A cairo pattern represents a source when drawing onto a surface.In cairo, a pattern is something that you can read from, that is used as the source or mask of a drawing operation. Patterns in cairo can be solid, surface-based, or even gradients patterns.


In this chapter of the Cairo tutorial, we have given some basic definitions.


原创粉丝点击