![]() |
![]() |
![]() |
MATE UI Library Reference Manual | ![]() |
---|---|---|---|---|
Top | Description |
#include <libmateui/libmateui.h> void (*MateGdkPixbufLoadCallback) (MateGdkPixbufAsyncHandle *handle
,MateVFSResult error
,GdkPixbuf *pixbuf
,gpointer cb_data
); void (*MateGdkPixbufDoneCallback) (MateGdkPixbufAsyncHandle *handle
,gpointer cb_data
); GdkPixbuf * mate_gdk_pixbuf_new_from_uri (const char *uri
); MateGdkPixbufAsyncHandle * mate_gdk_pixbuf_new_from_uri_async (const char *uri
,MateGdkPixbufLoadCallback load_callback
,MateGdkPixbufDoneCallback done_callback
,gpointer callback_data
); void mate_gdk_pixbuf_new_from_uri_cancel (MateGdkPixbufAsyncHandle *handle
);
void (*MateGdkPixbufLoadCallback) (MateGdkPixbufAsyncHandle *handle
,MateVFSResult error
,GdkPixbuf *pixbuf
,gpointer cb_data
);
|
|
|
|
|
|
|
void (*MateGdkPixbufDoneCallback) (MateGdkPixbufAsyncHandle *handle
,gpointer cb_data
);
|
|
|
GdkPixbuf * mate_gdk_pixbuf_new_from_uri (const char *uri
);
Loads a GdkPixbuf from the image file uri
points to, scaling it to the
desired size. If you pass -1 for width
or height
then the value
specified in the file will be used.
When preserving aspect ratio, if both height and width are set the size is picked such that the scaled image fits in a width * height rectangle.
|
the uri of an image |
Returns : |
The loaded pixbuf, or NULL on error |
Since 2.14
MateGdkPixbufAsyncHandle * mate_gdk_pixbuf_new_from_uri_async (const char *uri
,MateGdkPixbufLoadCallback load_callback
,MateGdkPixbufDoneCallback done_callback
,gpointer callback_data
);
|
|
|
|
|
|
|
|
Returns : |