| RSVG Reference Manual |
|---|
GdkPixbuf* rsvg_pixbuf_from_file (const gchar *file_name, GError **error); GdkPixbuf* rsvg_pixbuf_from_file_at_zoom (const gchar *file_name, double x_zoom, double y_zoom, GError **error); GdkPixbuf* rsvg_pixbuf_from_file_at_size (const gchar *file_name, gint width, gint height, GError **error); GdkPixbuf* rsvg_pixbuf_from_file_at_max_size (const gchar *file_name, gint max_width, gint max_height, GError **error); GdkPixbuf* rsvg_pixbuf_from_file_at_zoom_with_max (const gchar *file_name, double x_zoom, double y_zoom, gint max_width, gint max_height, GError **error); GdkPixbuf* rsvg_pixbuf_from_file_ex (RsvgHandle *handle, const gchar *file_name, GError **error); GdkPixbuf* rsvg_pixbuf_from_file_at_zoom_ex (RsvgHandle *handle, const gchar *file_name, double x_zoom, double y_zoom, GError **error); GdkPixbuf* rsvg_pixbuf_from_file_at_size_ex (RsvgHandle *handle, const gchar *file_name, gint width, gint height, GError **error); GdkPixbuf* rsvg_pixbuf_from_file_at_max_size_ex (RsvgHandle *handle, const gchar *file_name, gint max_width, gint max_height, GError **error); GdkPixbuf* rsvg_pixbuf_from_file_at_zoom_with_max_ex (RsvgHandle *handle, const gchar *file_name, double x_zoom, double y_zoom, gint max_width, gint max_height, GError **error);
GdkPixbuf* rsvg_pixbuf_from_file (const gchar *file_name,
GError **error);Loads a new
| file_name : | A file name |
| error : | return location for errors |
| Returns : | A newly allocated |
GdkPixbuf* rsvg_pixbuf_from_file_at_zoom (const gchar *file_name,
double x_zoom,
double y_zoom,
GError **error);Loads a new
| file_name : | A file name |
| x_zoom : | The horizontal zoom factor |
| y_zoom : | The vertical zoom factor |
| error : | return location for errors |
| Returns : | A newly allocated |
GdkPixbuf* rsvg_pixbuf_from_file_at_size (const gchar *file_name,
gint width,
gint height,
GError **error);Loads a new
| file_name : | A file name |
| width : | The new width, or -1 |
| height : | The new height, or -1 |
| error : | return location for errors |
| Returns : | A newly allocated |
GdkPixbuf* rsvg_pixbuf_from_file_at_max_size
(const gchar *file_name,
gint max_width,
gint max_height,
GError **error);Loads a new
| file_name : | A file name |
| max_width : | The requested max width |
| max_height : | The requested max heigh |
| error : | return location for errors |
| Returns : | A newly allocated |
GdkPixbuf* rsvg_pixbuf_from_file_at_zoom_with_max
(const gchar *file_name,
double x_zoom,
double y_zoom,
gint max_width,
gint max_height,
GError **error);Loads a new
| file_name : | A file name |
| x_zoom : | The horizontal zoom factor |
| y_zoom : | The vertical zoom factor |
| max_width : | The requested max width |
| max_height : | The requested max heigh |
| error : | return location for errors |
| Returns : | A newly allocated |
GdkPixbuf* rsvg_pixbuf_from_file_ex (RsvgHandle *handle,
const gchar *file_name,
GError **error);Loads a new
| handle : | The RSVG handle you wish to render with (either normal or gzipped) |
| file_name : | A file name |
| error : | return location for errors |
| Returns : | A newly allocated |
Since 2.4
GdkPixbuf* rsvg_pixbuf_from_file_at_zoom_ex
(RsvgHandle *handle,
const gchar *file_name,
double x_zoom,
double y_zoom,
GError **error);Loads a new
| handle : | The RSVG handle you wish to render with (either normal or gzipped) |
| file_name : | A file name |
| x_zoom : | The horizontal zoom factor |
| y_zoom : | The vertical zoom factor |
| error : | return location for errors |
| Returns : | A newly allocated |
Since 2.4
GdkPixbuf* rsvg_pixbuf_from_file_at_size_ex
(RsvgHandle *handle,
const gchar *file_name,
gint width,
gint height,
GError **error);Loads a new
| handle : | The RSVG handle you wish to render with (either normal or gzipped) |
| file_name : | A file name |
| width : | The new width, or -1 |
| height : | The new height, or -1 |
| error : | return location for errors |
| Returns : | A newly allocated |
Since 2.4
GdkPixbuf* rsvg_pixbuf_from_file_at_max_size_ex
(RsvgHandle *handle,
const gchar *file_name,
gint max_width,
gint max_height,
GError **error);Loads a new
| handle : | The RSVG handle you wish to render with (either normal or gzipped) |
| file_name : | A file name |
| max_width : | The requested max width |
| max_height : | The requested max heigh |
| error : | return location for errors |
| Returns : | A newly allocated |
Since 2.4
GdkPixbuf* rsvg_pixbuf_from_file_at_zoom_with_max_ex
(RsvgHandle *handle,
const gchar *file_name,
double x_zoom,
double y_zoom,
gint max_width,
gint max_height,
GError **error);Loads a new
| handle : | The RSVG handle you wish to render with (either normal or gzipped) |
| file_name : | A file name |
| x_zoom : | The horizontal zoom factor |
| y_zoom : | The vertical zoom factor |
| max_width : | The requested max width |
| max_height : | The requested max heigh |
| error : | return location for errors |
| Returns : | A newly allocated |
Since 2.4
| <<< Utility and Convenience Functions | Index >>> |