Home | History | Annotate | Download | only in demos

Lines Matching full:pixbuf

9     GdkPixbuf *pixbuf;
18 if (!(pixbuf = gdk_pixbuf_new_from_file (filename, NULL)))
23 width = gdk_pixbuf_get_width (pixbuf);
24 height = gdk_pixbuf_get_height (pixbuf);
25 n_channels = gdk_pixbuf_get_n_channels (pixbuf);
26 gdk_data = gdk_pixbuf_get_pixels (pixbuf);
27 stride = gdk_pixbuf_get_rowstride (pixbuf);
68 g_object_unref (pixbuf);
78 GdkPixbuf *pixbuf = gdk_pixbuf_new (GDK_COLORSPACE_RGB, TRUE,
80 int p_stride = gdk_pixbuf_get_rowstride (pixbuf);
81 guint32 *p_bits = (guint32 *)gdk_pixbuf_get_pixels (pixbuf);
92 return pixbuf;