diff options
author | Sven Neumann <sven@gimp.org> | 2001-10-05 18:51:47 +0000 |
---|---|---|
committer | Sven Neumann <neo@src.gnome.org> | 2001-10-05 18:51:47 +0000 |
commit | 40c29264820f2cf1db0d6e2836ae827ef9a5d05c (patch) | |
tree | 3a0a76e969c1b154cc677d553371e7f08390a2b5 /gdk-pixbuf/gdk-pixbuf.h | |
parent | 58a5467a4529526a08ef570c8451bf4eef35df22 (diff) | |
download | gdk-pixbuf-40c29264820f2cf1db0d6e2836ae827ef9a5d05c.tar.gz |
gdk-pixbuf/gdk-pixbuf-io.c gdk-pixbuf/gdk-pixbuf-private.h
2001-10-05 Sven Neumann <sven@gimp.org>
* gdk-pixbuf/gdk-pixbuf-io.c
* gdk-pixbuf/gdk-pixbuf-private.h
* gdk-pixbuf/gdk-pixbuf.c
* gdk-pixbuf/gdk-pixbuf.h
* gdk-pixbuf/io-jpeg.c
* gdk-pixbuf/io-png.c: changed GDK_PIXBUF_ERROR_BAD_OPTION_VALUE to
GDK_PIXBUF_ERROR_BAD_OPTION to we can use it for bad keys too. Added
new public API gdk_pixbuf_get_option() to retrieve key/value pairs
set by an image loader. Added support for saving and reading PNG tEXt
chunks in PNG images.
* demos/testpixbuf-save.c
* demos/testpixbuf-scale.c: simple tests for the new PNG tEXt chunk
feature.
* gdk-pixbuf/tmpl/gdk-pixbuf.sgml: adapt to changes in GDK_PIXBUF_ERROR
enum.
Diffstat (limited to 'gdk-pixbuf/gdk-pixbuf.h')
-rw-r--r-- | gdk-pixbuf/gdk-pixbuf.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/gdk-pixbuf/gdk-pixbuf.h b/gdk-pixbuf/gdk-pixbuf.h index 7d274d9d7..d0263bdc2 100644 --- a/gdk-pixbuf/gdk-pixbuf.h +++ b/gdk-pixbuf/gdk-pixbuf.h @@ -85,8 +85,8 @@ typedef enum { GDK_PIXBUF_ERROR_CORRUPT_IMAGE, /* no mem to load image */ GDK_PIXBUF_ERROR_INSUFFICIENT_MEMORY, - /* bad option value passed to save routine */ - GDK_PIXBUF_ERROR_BAD_OPTION_VALUE, + /* bad option passed to save routine */ + GDK_PIXBUF_ERROR_BAD_OPTION, /* unsupported image type (sort of an ENOSYS) */ GDK_PIXBUF_ERROR_UNKNOWN_TYPE, /* unsupported operation (load, save) for image type */ @@ -286,6 +286,12 @@ gboolean gdk_pixbuf_animation_iter_advance (Gd const GTimeVal *current_time); + + +G_CONST_RETURN gchar * gdk_pixbuf_get_option (GdkPixbuf *pixbuf, + const gchar *key); + + #include <gdk-pixbuf/gdk-pixbuf-loader.h> #include <gdk-pixbuf/gdk-pixbuf-enum-types.h> |