Lines Matching refs:GdkPixbuf

125  * The pixels formats of Cairo and GdkPixbuf are different.
126 * GdkPixbuf accesses pixels as bytes, alpha is not premultiplied,
131 * In other words, on a little endian system, a GdkPixbuf will contain:
142 * The class allows interoperation between GdkPixbuf
144 * This is implemented by creating a GdkPixbuf and a Cairo image surface
146 * the pixels are converted in place to the Cairo or the GdkPixbuf format.
163 /** Create a pixbuf from a GdkPixbuf.
164 * The constructor takes ownership of the passed GdkPixbuf reference,
166 Pixbuf::Pixbuf(GdkPixbuf *pb)
265 GdkPixbuf *buf = gdk_pixbuf_loader_get_pixbuf(loader);
311 GdkPixbuf *buf = gdk_pixbuf_loader_get_pixbuf(loader);
337 * Converts the pixbuf to GdkPixbuf pixel format.
340 GdkPixbuf *Pixbuf::getPixbufRaw(bool convert_format)
352 * The returned surface is owned by the GdkPixbuf and should not be freed.
412 return gdk_pixbuf_get_width(const_cast<GdkPixbuf*>(_pixbuf));
415 return gdk_pixbuf_get_height(const_cast<GdkPixbuf*>(_pixbuf));
418 return gdk_pixbuf_get_rowstride(const_cast<GdkPixbuf*>(_pixbuf));
421 return gdk_pixbuf_get_pixels(const_cast<GdkPixbuf*>(_pixbuf));
434 GdkPixbuf *old = _pixbuf;
1140 * Converts the Cairo surface to a GdkPixbuf pixel format,
1146 * The returned GdkPixbuf takes ownership of the passed surface reference,
1149 GdkPixbuf *ink_pixbuf_create_from_cairo_surface(cairo_surface_t *s)
1158 GdkPixbuf *pb = gdk_pixbuf_new_from_data(
1166 * Cleanup function for GdkPixbuf.
1168 * to gdk_pixbuf_new_from_data when creating a GdkPixbuf backed by
1234 * Convert pixel data from GdkPixbuf format to ARGB.
1235 * This will convert pixel data from GdkPixbuf format to Cairo's native pixel format.
1253 * Convert pixel data from ARGB to GdkPixbuf format.
1254 * This will convert pixel data from GdkPixbuf format to Cairo's native pixel format.
1270 * Converts GdkPixbuf's data to premultiplied ARGB.
1271 * This function will convert a GdkPixbuf in place into Cairo's native pixel format.
1276 ink_pixbuf_ensure_argb32(GdkPixbuf *pb)
1293 * Converts GdkPixbuf's data back to its native format.
1297 ink_pixbuf_ensure_normal(GdkPixbuf *pb)