![]() |
![]() |
![]() |
GIMP Widgets Library Reference Manual | ![]() |
---|---|---|---|---|
Top | Description |
void gimp_cairo_set_source_rgb (cairo_t *cr, const GimpRGB *color); void gimp_cairo_set_source_rgba (cairo_t *cr, const GimpRGB *color); gboolean gimp_cairo_set_focus_line_pattern (cairo_t *cr, GtkWidget *widget); cairo_pattern_t * gimp_cairo_checkerboard_create (cairo_t *cr, gint size, const GimpRGB *light, const GimpRGB *dark); cairo_surface_t * gimp_cairo_surface_create_from_pixbuf (GdkPixbuf *pixbuf); #define GIMP_CAIRO_RGB24_SET_PIXEL (d, r, g, b) #define GIMP_CAIRO_ARGB32_SET_PIXEL (d, r, g, b, a)
void gimp_cairo_set_source_rgb (cairo_t *cr, const GimpRGB *color);
Sets the source pattern within cr
to the solid opaque color
described by color
.
This function calls cairo_set_source_rgb()
for you.
|
Cairo context |
|
GimpRGB color |
Since GIMP 2.6
void gimp_cairo_set_source_rgba (cairo_t *cr, const GimpRGB *color);
Sets the source pattern within cr
to the solid translucent color
described by color
.
This function calls cairo_set_source_rgba()
for you.
|
Cairo context |
|
GimpRGB color |
Since GIMP 2.6
gboolean gimp_cairo_set_focus_line_pattern (cairo_t *cr, GtkWidget *widget);
Sets color and dash pattern for stroking a focus line on the given
cr
. The line pattern is taken from widget
.
|
Cairo context |
|
widget to draw the focus indicator on |
Returns : |
TRUE if the widget style has a focus line pattern,
FALSE otherwise
|
Since GIMP 2.6
cairo_pattern_t * gimp_cairo_checkerboard_create (cairo_t *cr, gint size, const GimpRGB *light, const GimpRGB *dark);
Create a repeating checkerboard pattern.
|
Cairo context |
|
check size |
|
light check color or NULL to use the default light gray
|
|
dark check color or NULL to use the default dark gray
|
Returns : |
a new Cairo pattern that can be used as a source on cr .
|
Since GIMP 2.6
cairo_surface_t * gimp_cairo_surface_create_from_pixbuf (GdkPixbuf *pixbuf);
Create a Cairo image surface from a GdkPixbuf.
You should avoid calling this function as there are probably more efficient ways of achieving the result you are looking for.
|
a GdkPixbuf |
Returns : |
Since GIMP 2.6
#define GIMP_CAIRO_RGB24_SET_PIXEL(d, r, g, b)
Sets a single pixel in an Cairo image surface in CAIRO_FORMAT_RGB24
.
|
pointer to the destination buffer |
|
red component |
|
green component |
|
blue component |
Since GIMP 2.6
#define GIMP_CAIRO_ARGB32_SET_PIXEL(d, r, g, b, a)
Sets a single pixel in an Cairo image surface in CAIRO_FORMAT_ARGB32
.
|
pointer to the destination buffer |
|
red component, not pre-multiplied |
|
green component, not pre-multiplied |
|
blue component, not pre-multiplied |
|
alpha component |
Since GIMP 2.6