1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <glib.h> 4 #include <gtk/gtk.h> 5 #include "pixman.h" 6 7 void show_image (pixman_image_t *image); 8 9 pixman_image_t * 10 pixman_image_from_file (const char *filename, pixman_format_code_t format); 11 12 GdkPixbuf *pixbuf_from_argb32 (uint32_t *bits, 13 int width, 14 int height, 15 int stride); 16