图片GdkPixbuf
//创建图片资源对象
GdkPixbuf* gdk_pixbuf_new_from_file (const gchar *filename, GError **error);
//创建指定图片大小资源对象
GdkPixbuf* gdk_pixbuf_new_from_file_at_size (const char* filename, gint width, gint height, GError **error);
//设置图片大小
GdkPixbuf* gdk_pixbuf_scale_simple (const GdkPixbuf* src, int dest_width, int dest_height, GdkInterpType interp_type);
常用GDK_INTERP_BILINEAR
//释放资源
void g_object_unref (GtkObject* object);
图片控件GtkImage
//创建图片控件通过图片路径
GtkImage* gtk_image_new_from_file
//创建图片资源对象
GdkPixbuf* gdk_pixbuf_new_from_file (const gchar *filename, GError **error);
//创建指定图片大小资源对象
GdkPixbuf* gdk_pixbuf_new_from_file_at_size (const char* filename, gint width, gint height, GError **error);
//设置图片大小
GdkPixbuf* gdk_pixbuf_scale_simple (const GdkPixbuf* src, int dest_width, int dest_height, GdkInterpType interp_type);
常用GDK_INTERP_BILINEAR
//释放资源
void g_object_unref (GtkObject* object);
图片控件GtkImage
//创建图片控件通过图片路径
GtkImage* gtk_image_new_from_file