Added reference counting to animations. A web browser may want to share a

2000-01-01  Federico Mena Quintero  <federico@helixcode.com>

	* gdk-pixbuf/gdk-pixbuf.h (GdkPixbufAnimation): Added reference
	counting to animations.  A web browser may want to share a single
	copy of an animated GIF if it appears multiple times in a web
	page, for example.

	* gdk-pixbuf/gdk-pixbuf-animation.c: New file.  Moved the
	animation functions here.
	(gdk_pixbuf_animation_new_from_file): Prettified.  Return a NULL
	animation if the loader does not support multiframe loading and
	the single-frame load returned NULL.  Check that the filename is
	not NULL.  Updated inline documentation.
	(gdk_pixbuf_animation_ref): New function.
	(gdk_pixbuf_animation_unref): New function.
	Removed gdk_pixbuf_animation_destroy() in favor of reference
	counting.

	* gdk-pixbuf/gdk-pixbuf-io.c (gdk_pixbuf_new_from_file):
	Prettified.  Made ref_count assertion more paranoid.  Check that
	the filename is not NULL.
	(gdk_pixbuf_get_module): Use guchar * and guint for buffer and
	size, respectively.
	(gdk_pixbuf_new_from_xpm_data): Changed the "data" argument to
	const char **.

	* gdk-pixbuf/io-gif.c (image_load_animation): Create the animation
	with a reference count of 1.

	* gdk-pixbuf/Makefile.am (libgdk_pixbuf_la_SOURCES): Added
	gdk-pixbuf-animation.c.

	* doc/tmpl/animation.sgml: Populated.  It is still missing a
	description of the overlay modes.

	* doc/gdk-pixbuf-sections.txt: Added the animation section.  Moved
	the canvas item section to the end, as it will be moved later to
	gnome-libs.

	* doc/gdk-pixbuf.sgml: Added the animation section.

	* doc/Makefile.am (tmpl_sources): Added tmpl/animation.sgml.
This commit is contained in:
Federico Mena Quintero
2000-01-02 03:59:22 +00:00
committed by Arturo Espinosa
parent 605c562ffb
commit 6e3522ab2c
22 changed files with 508 additions and 281 deletions

View File

@ -17,6 +17,7 @@ HTML_DIR=$(datadir)/gnome/html
TARGET_DIR=$(HTML_DIR)/$(DOC_MODULE) TARGET_DIR=$(HTML_DIR)/$(DOC_MODULE)
tmpl_sources = \ tmpl_sources = \
tmpl/animation.sgml
tmpl/creating.sgml \ tmpl/creating.sgml \
tmpl/file-loading.sgml \ tmpl/file-loading.sgml \
tmpl/from-drawables.sgml \ tmpl/from-drawables.sgml \

View File

@ -6,7 +6,9 @@ GdkPixbuf *pixbuf, gpointer user_data
<USER_FUNCTION> <USER_FUNCTION>
<NAME>ModuleUpdatedNotifyFunc</NAME> <NAME>ModuleUpdatedNotifyFunc</NAME>
<RETURNS>void </RETURNS> <RETURNS>void </RETURNS>
GdkPixbuf *pixbuf, gpointer user_data, guint x, guint y, guint width, guint height GdkPixbuf *pixbuf, gpointer user_data,
guint x, guint y,
guint width, guint height
</USER_FUNCTION> </USER_FUNCTION>
<STRUCT> <STRUCT>
<NAME>GdkPixbufModule</NAME> <NAME>GdkPixbufModule</NAME>
@ -18,12 +20,15 @@ struct GdkPixbufModule {
gboolean (* format_check) (guchar *buffer, int size); gboolean (* format_check) (guchar *buffer, int size);
GModule *module; GModule *module;
GdkPixbuf *(* load) (FILE *f); GdkPixbuf *(* load) (FILE *f);
GdkPixbuf *(* load_xpm_data) (const gchar **data); GdkPixbuf *(* load_xpm_data) (const char **data);
/* Incremental loading */ /* Incremental loading */
gpointer (* begin_load) (ModulePreparedNotifyFunc prepare_func, ModuleUpdatedNotifyFunc update_func, gpointer user_data);
void (* stop_load) (gpointer context); gpointer (* begin_load) (ModulePreparedNotifyFunc prepare_func,
gboolean (* load_increment)(gpointer context, const gchar *buf, guint size); ModuleUpdatedNotifyFunc update_func,
gpointer user_data);
void (* stop_load) (gpointer context);
gboolean (* load_increment) (gpointer context, const guchar *buf, guint size);
/* Animation loading */ /* Animation loading */
GdkPixbufAnimation *(* load_animation) (FILE *f); GdkPixbufAnimation *(* load_animation) (FILE *f);
@ -32,7 +37,7 @@ struct GdkPixbufModule {
<FUNCTION> <FUNCTION>
<NAME>gdk_pixbuf_get_module</NAME> <NAME>gdk_pixbuf_get_module</NAME>
<RETURNS>GdkPixbufModule *</RETURNS> <RETURNS>GdkPixbufModule *</RETURNS>
gchar *buffer,gint size guchar *buffer, guint size
</FUNCTION> </FUNCTION>
<FUNCTION> <FUNCTION>
<NAME>gdk_pixbuf_load_module</NAME> <NAME>gdk_pixbuf_load_module</NAME>
@ -88,7 +93,7 @@ void
<FUNCTION> <FUNCTION>
<NAME>gdk_pixbuf_loader_write</NAME> <NAME>gdk_pixbuf_loader_write</NAME>
<RETURNS>gboolean </RETURNS> <RETURNS>gboolean </RETURNS>
GdkPixbufLoader *loader,const gchar *buf,size_t count GdkPixbufLoader *loader,const guchar *buf,size_t count
</FUNCTION> </FUNCTION>
<FUNCTION> <FUNCTION>
<NAME>gdk_pixbuf_loader_get_pixbuf</NAME> <NAME>gdk_pixbuf_loader_get_pixbuf</NAME>
@ -114,19 +119,9 @@ GdkPixbufLoader *loader
<STRUCT> <STRUCT>
<NAME>GdkPixbufAnimation</NAME> <NAME>GdkPixbufAnimation</NAME>
</STRUCT> </STRUCT>
<ENUM>
<NAME>GdkPixbufFrameAction</NAME>
typedef enum
{
GDK_PIXBUF_FRAME_RETAIN,
GDK_PIXBUF_FRAME_DISPOSE,
GDK_PIXBUF_FRAME_REVERT
} GdkPixbufFrameAction;
</ENUM>
<STRUCT> <STRUCT>
<NAME>GdkPixbuf</NAME> <NAME>GdkPixbuf</NAME>
struct GdkPixbuf struct GdkPixbuf {
{
/* Reference count */ /* Reference count */
int ref_count; int ref_count;
@ -134,23 +129,41 @@ struct GdkPixbuf
ArtPixBuf *art_pixbuf; ArtPixBuf *art_pixbuf;
}; };
</STRUCT> </STRUCT>
<ENUM>
<NAME>GdkPixbufFrameAction</NAME>
typedef enum {
GDK_PIXBUF_FRAME_RETAIN,
GDK_PIXBUF_FRAME_DISPOSE,
GDK_PIXBUF_FRAME_REVERT
} GdkPixbufFrameAction;
</ENUM>
<STRUCT> <STRUCT>
<NAME>GdkPixbufFrame</NAME> <NAME>GdkPixbufFrame</NAME>
struct GdkPixbufFrame struct GdkPixbufFrame {
{ /* The pixbuf with this frame's image data */
GdkPixbuf *pixbuf; GdkPixbuf *pixbuf;
gushort x_offset; /* Offsets for overlaying onto the animation's area */
gushort y_offset; int x_offset;
guint delaytime; int y_offset;
/* Frame duration in ms */
int delay_time;
/* Overlay mode */
GdkPixbufFrameAction action; GdkPixbufFrameAction action;
}; };
</STRUCT> </STRUCT>
<STRUCT> <STRUCT>
<NAME>GdkPixbufAnimation</NAME> <NAME>GdkPixbufAnimation</NAME>
struct GdkPixbufAnimation struct GdkPixbufAnimation {
{ /* Reference count */
int ref_count;
/* Number of frames */
int n_frames; int n_frames;
/* List of GdkPixbufFrame structures */
GList *frames; GList *frames;
}; };
</STRUCT> </STRUCT>
@ -217,7 +230,7 @@ ArtPixFormat format, gboolean has_alpha, int bits_per_sample,int width, int heig
<FUNCTION> <FUNCTION>
<NAME>gdk_pixbuf_new_from_file</NAME> <NAME>gdk_pixbuf_new_from_file</NAME>
<RETURNS>GdkPixbuf *</RETURNS> <RETURNS>GdkPixbuf *</RETURNS>
const char *filename const char *filename
</FUNCTION> </FUNCTION>
<FUNCTION> <FUNCTION>
<NAME>gdk_pixbuf_new_from_data</NAME> <NAME>gdk_pixbuf_new_from_data</NAME>
@ -227,7 +240,7 @@ guchar *data,ArtPixFormat format,gboolean has_alpha,int width, int height,int ro
<FUNCTION> <FUNCTION>
<NAME>gdk_pixbuf_new_from_xpm_data</NAME> <NAME>gdk_pixbuf_new_from_xpm_data</NAME>
<RETURNS>GdkPixbuf *</RETURNS> <RETURNS>GdkPixbuf *</RETURNS>
const gchar **data const char **data
</FUNCTION> </FUNCTION>
<FUNCTION> <FUNCTION>
<NAME>gdk_pixbuf_add_alpha</NAME> <NAME>gdk_pixbuf_add_alpha</NAME>
@ -264,12 +277,17 @@ GdkPixbuf *dest,GdkDrawable *src, GdkColormap *cmap,int src_x, int src_y,int des
<FUNCTION> <FUNCTION>
<NAME>gdk_pixbuf_animation_new_from_file</NAME> <NAME>gdk_pixbuf_animation_new_from_file</NAME>
<RETURNS>GdkPixbufAnimation *</RETURNS> <RETURNS>GdkPixbufAnimation *</RETURNS>
const char *filename const char *filename
</FUNCTION> </FUNCTION>
<FUNCTION> <FUNCTION>
<NAME>gdk_pixbuf_animation_destroy</NAME> <NAME>gdk_pixbuf_animation_ref</NAME>
<RETURNS>void </RETURNS> <RETURNS>void </RETURNS>
GdkPixbufAnimation *animation,gboolean free_frames GdkPixbufAnimation *animation
</FUNCTION>
<FUNCTION>
<NAME>gdk_pixbuf_animation_unref</NAME>
<RETURNS>void </RETURNS>
GdkPixbufAnimation *animation
</FUNCTION> </FUNCTION>
<MACRO> <MACRO>
<NAME>GNOME_TYPE_CANVAS_PIXBUF</NAME> <NAME>GNOME_TYPE_CANVAS_PIXBUF</NAME>

View File

@ -50,6 +50,35 @@ gdk_pixbuf_get_from_drawable
gdk_pixbuf_add_alpha gdk_pixbuf_add_alpha
</SECTION> </SECTION>
<SECTION>
<FILE>animation</FILE>
GdkPixbufFrameAction
GdkPixbufFrame
GdkPixbufAnimation
gdk_pixbuf_animation_new_from_file
gdk_pixbuf_animation_ref
gdk_pixbuf_animation_unref
</SECTION>
<SECTION>
<FILE>gdk-pixbuf-loader</FILE>
GDK_PIXBUF_LOADER
<TITLE>GdkPixbufLoader</TITLE>
gdk_pixbuf_loader_new
gdk_pixbuf_loader_write
gdk_pixbuf_loader_get_pixbuf
gdk_pixbuf_loader_get_animation
gdk_pixbuf_loader_close
<SUBSECTION Standard>
GDK_TYPE_PIXBUF_LOADER
GDK_IS_PIXBUF_LOADER
gdk_pixbuf_loader_get_type
GDK_PIXBUF_LOADER_CLASS
GDK_IS_PIXBUF_LOADER_CLASS
<SUBSECTION Private>
GdkPixbufLoader
</SECTION>
<SECTION> <SECTION>
<FILE>gnome-canvas-pixbuf</FILE> <FILE>gnome-canvas-pixbuf</FILE>
GNOME_CANVAS_PIXBUF GNOME_CANVAS_PIXBUF
@ -63,21 +92,3 @@ GNOME_IS_CANVAS_PIXBUF_CLASS
<SUBSECTION Private> <SUBSECTION Private>
GnomeCanvasPixbuf GnomeCanvasPixbuf
</SECTION> </SECTION>
<SECTION>
<FILE>gdk-pixbuf-loader</FILE>
GDK_PIXBUF_LOADER
<TITLE>GdkPixbufLoader</TITLE>
gdk_pixbuf_loader_new
gdk_pixbuf_loader_write
gdk_pixbuf_loader_get_pixbuf
gdk_pixbuf_loader_close
<SUBSECTION Standard>
GDK_TYPE_PIXBUF_LOADER
GDK_IS_PIXBUF_LOADER
gdk_pixbuf_loader_get_type
GDK_PIXBUF_LOADER_CLASS
GDK_IS_PIXBUF_LOADER_CLASS
<SUBSECTION Private>
GdkPixbufLoader
</SECTION>

View File

@ -6,8 +6,9 @@
<!entity gdk-pixbuf-rendering SYSTEM "sgml/rendering.sgml"> <!entity gdk-pixbuf-rendering SYSTEM "sgml/rendering.sgml">
<!entity gdk-pixbuf-from-drawables SYSTEM "sgml/from-drawables.sgml"> <!entity gdk-pixbuf-from-drawables SYSTEM "sgml/from-drawables.sgml">
<!entity gdk-pixbuf-util SYSTEM "sgml/util.sgml"> <!entity gdk-pixbuf-util SYSTEM "sgml/util.sgml">
<!entity GnomeCanvasPixbuf SYSTEM "sgml/gnome-canvas-pixbuf.sgml"> <!entity gdk-pixbuf-animation SYSTEM "sgml/animation.sgml">
<!entity GdkPixbufLoader SYSTEM "sgml/gdk-pixbuf-loader.sgml"> <!entity GdkPixbufLoader SYSTEM "sgml/gdk-pixbuf-loader.sgml">
<!entity GnomeCanvasPixbuf SYSTEM "sgml/gnome-canvas-pixbuf.sgml">
]> ]>
<book> <book>
@ -50,7 +51,8 @@
&gdk-pixbuf-rendering; &gdk-pixbuf-rendering;
&gdk-pixbuf-from-drawables; &gdk-pixbuf-from-drawables;
&gdk-pixbuf-util; &gdk-pixbuf-util;
&GnomeCanvasPixbuf; &gdk-pixbuf-animation;
&GdkPixbufLoader; &GdkPixbufLoader;
&GnomeCanvasPixbuf;
</reference> </reference>
</book> </book>

View File

@ -0,0 +1,86 @@
<!-- ##### SECTION Title ##### -->
Animations
<!-- ##### SECTION Short_Description ##### -->
Animations as multi-frame structures.
<!-- ##### SECTION Long_Description ##### -->
<para>
The GdkPixbuf library provides a simple mechanism to load and
represent animations, primarily animated GIF files. Animations
are represented as lists of #GdkPixbufFrame structures. Each
frame structure contains a #GdkPixbuf structure and information
about the frame's overlay mode and duration.
</para>
<!-- ##### SECTION See_Also ##### -->
<para>
#GdkPixbufLoader
</para>
<!-- ##### ENUM GdkPixbufFrameAction ##### -->
<para>
</para>
@GDK_PIXBUF_FRAME_RETAIN:
@GDK_PIXBUF_FRAME_DISPOSE:
@GDK_PIXBUF_FRAME_REVERT:
<!-- ##### STRUCT GdkPixbufFrame ##### -->
<para>
This structure describes a frame in a #GdkPixbufAnimation. Each
frame consists of a #GdkPixbuf, an offset of the frame within the
animation's bounding box, a duration, and an overlay mode or
action.
</para>
@pixbuf: The frame's image contents.
@x_offset: X offset of the frame inside the animation's bounding box.
@y_offset: Y offset of the frame inside the animation's bounding box.
@delay_time: Duration of the frame in milliseconds.
@action: Overlay mode.
<!-- ##### STRUCT GdkPixbufAnimation ##### -->
<para>
This structure describes an animation, which is represented as a
list of #GdkPixbufFrame structures.
</para>
@ref_count: Reference count.
@n_frames: Number of frames in the animation.
@frames: List of #GdkPixbufFrame structures.
<!-- ##### FUNCTION gdk_pixbuf_animation_new_from_file ##### -->
<para>
</para>
@filename:
@Returns:
<!-- ##### FUNCTION gdk_pixbuf_animation_ref ##### -->
<para>
</para>
@animation:
<!-- ##### FUNCTION gdk_pixbuf_animation_unref ##### -->
<para>
</para>
@animation:
<!--
Local variables:
mode: sgml
sgml-parent-document: ("../gdk-pixbuf.sgml" "book" "refsect2" "")
End:
-->

View File

@ -13,13 +13,11 @@ Getting parts of a drawable's image data into a pixbuf.
transferred from the X server to the client program and converted. transferred from the X server to the client program and converted.
</para> </para>
<!-- ##### SECTION See_Also ##### --> <!-- ##### SECTION See_Also ##### -->
<para> <para>
#GdkPixbuf, gdk_image_get() #GdkPixbuf, gdk_image_get()
</para> </para>
<!-- ##### FUNCTION gdk_pixbuf_get_from_drawable ##### --> <!-- ##### FUNCTION gdk_pixbuf_get_from_drawable ##### -->
<para> <para>
@ -36,10 +34,11 @@ Getting parts of a drawable's image data into a pixbuf.
@height: @height:
@Returns: @Returns:
<!-- <!--
Local variables: Local variables:
mode: sgml mode: sgml
sgml-parent-document: ("../gdk-pixbuf.sgml" "book" "refsect2" "") sgml-parent-document: ("../gdk-pixbuf.sgml" "book" "refsect2" "")
End: End:
--> -->

View File

@ -54,6 +54,15 @@ Application-driven image loading.
@Returns: @Returns:
<!-- ##### FUNCTION gdk_pixbuf_loader_get_animation ##### -->
<para>
</para>
@loader:
@Returns:
<!-- ##### FUNCTION gdk_pixbuf_loader_close ##### --> <!-- ##### FUNCTION gdk_pixbuf_loader_close ##### -->
<para> <para>

View File

@ -104,8 +104,7 @@ In the future it will do full alpha compositing.
@dest_y: @dest_y:
@width: @width:
@height: @height:
@alpha_threshold: @alpha_threshold: <!--
<!--
Local variables: Local variables:
mode: sgml mode: sgml
sgml-parent-document: ("../gdk-pixbuf.sgml" "book" "refsect2" "") sgml-parent-document: ("../gdk-pixbuf.sgml" "book" "refsect2" "")

View File

@ -28,7 +28,6 @@ Utility and miscellaneous convenience functions.
@g: @g:
@b: @b:
@Returns: @Returns:
<!-- <!--
Local variables: Local variables:
mode: sgml mode: sgml

View File

@ -1,3 +1,46 @@
2000-01-01 Federico Mena Quintero <federico@helixcode.com>
* gdk-pixbuf/gdk-pixbuf.h (GdkPixbufAnimation): Added reference
counting to animations. A web browser may want to share a single
copy of an animated GIF if it appears multiple times in a web
page, for example.
* gdk-pixbuf/gdk-pixbuf-animation.c: New file. Moved the
animation functions here.
(gdk_pixbuf_animation_new_from_file): Prettified. Return a NULL
animation if the loader does not support multiframe loading and
the single-frame load returned NULL. Check that the filename is
not NULL. Updated inline documentation.
(gdk_pixbuf_animation_ref): New function.
(gdk_pixbuf_animation_unref): New function.
Removed gdk_pixbuf_animation_destroy() in favor of reference
counting.
* gdk-pixbuf/gdk-pixbuf-io.c (gdk_pixbuf_new_from_file):
Prettified. Made ref_count assertion more paranoid. Check that
the filename is not NULL.
(gdk_pixbuf_get_module): Use guchar * and guint for buffer and
size, respectively.
(gdk_pixbuf_new_from_xpm_data): Changed the "data" argument to
const char **.
* gdk-pixbuf/io-gif.c (image_load_animation): Create the animation
with a reference count of 1.
* gdk-pixbuf/Makefile.am (libgdk_pixbuf_la_SOURCES): Added
gdk-pixbuf-animation.c.
* doc/tmpl/animation.sgml: Populated. It is still missing a
description of the overlay modes.
* doc/gdk-pixbuf-sections.txt: Added the animation section. Moved
the canvas item section to the end, as it will be moved later to
gnome-libs.
* doc/gdk-pixbuf.sgml: Added the animation section.
* doc/Makefile.am (tmpl_sources): Added tmpl/animation.sgml.
1999-12-26 Peter Teichman <pat@gnu.org> 1999-12-26 Peter Teichman <pat@gnu.org>
* gdk-pixbuf/Makefile.am (libpixbuf_tiff_la_LIBADD): add * gdk-pixbuf/Makefile.am (libpixbuf_tiff_la_LIBADD): add
@ -88,9 +131,9 @@
1999-12-08 Arjan van de Ven <arjan@fenrus.demon.nl> 1999-12-08 Arjan van de Ven <arjan@fenrus.demon.nl>
* gdk-pixbuf/gdk-pixbuf-drawable.c : Fixed the red/green/red * gdk-pixbuf/gdk-pixbuf-drawable.c : Fixed the red/green/red
bug on two occasions. bug on two occasions.
* gdk-pixbuf/io-ras.c: Changed from the custom be32_to_cpu * gdk-pixbuf/io-ras.c: Changed from the custom be32_to_cpu
function to the generic glib one. function to the generic glib one.
1999-12-08 Federico Mena Quintero <federico@redhat.com> 1999-12-08 Federico Mena Quintero <federico@redhat.com>

View File

@ -52,17 +52,11 @@ LDADDS = libgdk_pixbuf.la $(LIBART_LIBS) $(GLIB_LIBS) $(GTK_LIBS)
if INSIDE_GNOME_LIBS if INSIDE_GNOME_LIBS
testpixbuf_LDADD = $(LDADDS) $(LIBART_LIBS) -lgmodule testpixbuf_LDADD = $(LDADDS) $(LIBART_LIBS) -lgmodule
testpixbuf_drawable_LDADD = $(LDADDS) testpixbuf_drawable_LDADD = $(LDADDS)
testanimation_LDADD = $(LDADDS) $(LIBART_LIBS) -lgmodule
else else
testpixbuf_LDADD = $(LDADDS) $(LIBART_LIBS) $(GNOME_LIBS) -lgmodule testpixbuf_LDADD = $(LDADDS) $(LIBART_LIBS) $(GNOME_LIBS) -lgmodule
testpixbuf_drawable_LDADD = $(LDADDS) $(GNOME_LIBS) testpixbuf_drawable_LDADD = $(LDADDS) $(GNOME_LIBS)
endif
if INSIDE_GNOME_LIBS
testanimation_LDADD = $(LDADDS) $(LIBART_LIBS) -lgmodule
testanimation_drawable_LDADD = $(LDADDS)
else
testanimation_LDADD = $(LDADDS) $(LIBART_LIBS) $(GNOME_LIBS) -lgmodule testanimation_LDADD = $(LDADDS) $(LIBART_LIBS) $(GNOME_LIBS) -lgmodule
testanimation_drawable_LDADD = $(LDADDS) $(GNOME_LIBS)
endif endif
@ -83,6 +77,7 @@ libgdk_pixbufincludedir = $(includedir)/gdk-pixbuf
libgdk_pixbuf_la_SOURCES = \ libgdk_pixbuf_la_SOURCES = \
gdk-pixbuf.c \ gdk-pixbuf.c \
gdk-pixbuf-animation.c \
gdk-pixbuf-data.c \ gdk-pixbuf-data.c \
gdk-pixbuf-drawable.c \ gdk-pixbuf-drawable.c \
gdk-pixbuf-io.c \ gdk-pixbuf-io.c \

View File

@ -0,0 +1,159 @@
/* GdkPixbuf library - Simple animation support
*
* Copyright (C) 1999 The Free Software Foundation
*
* Authors: Jonathan Blandford <jrb@redhat.com>
* Havoc Pennington <hp@redhat.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#include <config.h>
#include "gdk-pixbuf-io.h"
/**
* gdk_pixbuf_animation_new_from_file:
* @filename: Name of file to load.
*
* Creates a new animation by loading it from a file. The file format is
* detected automatically. If the file's format does not support multi-frame
* images, then an animation with a single frame will be created.
*
* Return value: A newly created animation with a reference count of 1, or NULL
* if any of several error conditions ocurred: the file could not be opened,
* there was no loader for the file's format, there was not enough memory to
* allocate the image buffer, or the image file contained invalid data.
**/
GdkPixbufAnimation *
gdk_pixbuf_animation_new_from_file (const char *filename)
{
GdkPixbufAnimation *animation;
int size;
FILE *f;
guchar buffer [128];
GdkPixbufModule *image_module;
g_return_val_if_fail (filename != NULL, NULL);
f = fopen (filename, "r");
if (!f)
return NULL;
size = fread (&buffer, 1, sizeof (buffer), f);
if (size == 0) {
fclose (f);
return NULL;
}
image_module = gdk_pixbuf_get_module (buffer, size);
if (!image_module) {
g_warning ("Unable to find handler for file: %s", filename);
fclose (f);
return NULL;
}
if (image_module->module == NULL)
gdk_pixbuf_load_module (image_module);
if (image_module->load_animation == NULL) {
GdkPixbuf *pixbuf;
GdkPixbufFrame *frame;
/* Keep this logic in sync with gdk_pixbuf_new_from_file() */
if (image_module->load == NULL) {
fclose (f);
return NULL;
}
fseek (f, 0, SEEK_SET);
pixbuf = (* image_module->load) (f);
fclose (f);
if (pixbuf)
g_assert (pixbuf->ref_count > 0);
else
return NULL;
frame = g_new (GdkPixbufFrame, 1);
frame->pixbuf = pixbuf;
frame->x_offset = 0;
frame->y_offset = 0;
frame->delay_time = -1;
frame->action = GDK_PIXBUF_FRAME_RETAIN;
animation = g_new (GdkPixbufAnimation, 1);
animation->ref_count = 1;
animation->n_frames = 1;
animation->frames = g_list_prepend (NULL, frame);
} else {
fseek (f, 0, SEEK_SET);
animation = (* image_module->load_animation) (f);
fclose (f);
}
return animation;
}
/**
* gdk_pixbuf_animation_ref:
* @animation: An animation.
*
* Adds a reference to an animation. It must be released afterwards using
* gdk_pixbuf_animation_unref().
**/
void
gdk_pixbuf_animation_ref (GdkPixbufAnimation *animation)
{
g_return_if_fail (animation != NULL);
g_return_if_fail (animation->ref_count > 0);
animation->ref_count++;
}
/**
* gdk_pixbuf_animation_unref:
* @animation: An animation.
*
* Removes a reference from an animation. It will be destroyed when the
* reference count drops to zero. At that point, all the frames in the
* animation will be freed and their corresponding pixbufs will be unreferenced.
**/
void
gdk_pixbuf_animation_unref (GdkPixbufAnimation *animation)
{
g_return_if_fail (animation != NULL);
g_return_if_fail (animation->ref_count > 0);
animation->ref_count--;
if (animation->ref_count == 0) {
GList *l;
GdkPixbufFrame *frame;
for (l = animation->frames; l; l = l->next) {
frame = l->data;
gdk_pixbuf_unref (frame->pixbuf);
g_free (frame);
}
g_list_free (animation->frames);
g_free (animation);
}
}

View File

@ -193,7 +193,7 @@ gdk_pixbuf_load_module (GdkPixbufModule *image_module)
GModule *module; GModule *module;
gpointer load_sym; gpointer load_sym;
g_return_if_fail(image_module->module == NULL); g_return_if_fail (image_module->module == NULL);
module_name = g_strconcat ("pixbuf-", image_module->module_name, NULL); module_name = g_strconcat ("pixbuf-", image_module->module_name, NULL);
path = g_module_build_path (PIXBUF_LIBDIR, module_name); path = g_module_build_path (PIXBUF_LIBDIR, module_name);
@ -201,17 +201,17 @@ gdk_pixbuf_load_module (GdkPixbufModule *image_module)
module = g_module_open (path, G_MODULE_BIND_LAZY); module = g_module_open (path, G_MODULE_BIND_LAZY);
if (!module) { if (!module) {
/* Debug feature, check in present working directory */ /* Debug feature, check in present working directory */
g_free(path); g_free (path);
path = g_module_build_path("", module_name); path = g_module_build_path ("", module_name);
module = g_module_open(path, G_MODULE_BIND_LAZY); module = g_module_open (path, G_MODULE_BIND_LAZY);
if (!module) { if (!module) {
g_warning ("Unable to load module: %s: %s", path, g_module_error()); g_warning ("Unable to load module: %s: %s", path, g_module_error ());
g_free (module_name); g_free (module_name);
g_free(path); g_free (path);
return; return;
} }
g_free(path); g_free (path);
} else { } else {
g_free (path); g_free (path);
} }
@ -242,14 +242,15 @@ gdk_pixbuf_load_module (GdkPixbufModule *image_module)
GdkPixbufModule * GdkPixbufModule *
gdk_pixbuf_get_module (gchar *buffer, gint size) gdk_pixbuf_get_module (guchar *buffer, guint size)
{ {
gint i; int i;
for (i = 0; file_formats [i].module_name; i++) { for (i = 0; file_formats [i].module_name; i++) {
if ((* file_formats [i].format_check) (buffer, size)) if ((* file_formats [i].format_check) (buffer, size))
return &(file_formats[i]); return &(file_formats[i]);
} }
return NULL; return NULL;
} }
@ -269,46 +270,46 @@ GdkPixbuf *
gdk_pixbuf_new_from_file (const char *filename) gdk_pixbuf_new_from_file (const char *filename)
{ {
GdkPixbuf *pixbuf; GdkPixbuf *pixbuf;
gint size; int size;
FILE *f; FILE *f;
char buffer [128]; guchar buffer [128];
GdkPixbufModule *image_module; GdkPixbufModule *image_module;
g_return_val_if_fail (filename != NULL, NULL);
f = fopen (filename, "r"); f = fopen (filename, "r");
if (!f) if (!f)
return NULL; return NULL;
size = fread (&buffer, 1, sizeof (buffer), f); size = fread (&buffer, 1, sizeof (buffer), f);
if (size == 0) { if (size == 0) {
fclose (f); fclose (f);
return NULL; return NULL;
} }
image_module = gdk_pixbuf_get_module (buffer, size); image_module = gdk_pixbuf_get_module (buffer, size);
if (image_module){ if (!image_module) {
if (image_module->module == NULL)
gdk_pixbuf_load_module (image_module);
if (image_module->load == NULL) {
fclose (f);
return NULL;
}
fseek (f, 0, SEEK_SET);
pixbuf = (* image_module->load) (f);
fclose (f);
if (pixbuf)
g_assert (pixbuf->ref_count != 0);
return pixbuf;
} else {
g_warning ("Unable to find handler for file: %s", filename); g_warning ("Unable to find handler for file: %s", filename);
fclose (f);
return NULL;
} }
if (image_module->module == NULL)
gdk_pixbuf_load_module (image_module);
if (image_module->load == NULL) {
fclose (f);
return NULL;
}
fseek (f, 0, SEEK_SET);
pixbuf = (* image_module->load) (f);
fclose (f); fclose (f);
return NULL;
if (pixbuf)
g_assert (pixbuf->ref_count > 0);
return pixbuf;
} }
/** /**
@ -321,98 +322,23 @@ gdk_pixbuf_new_from_file (const char *filename)
* Return value: A newly-created pixbuf with a reference count of 1. * Return value: A newly-created pixbuf with a reference count of 1.
**/ **/
GdkPixbuf * GdkPixbuf *
gdk_pixbuf_new_from_xpm_data (const gchar **data) gdk_pixbuf_new_from_xpm_data (const char **data)
{ {
GdkPixbuf *(* load_xpm_data) (const gchar **data); GdkPixbuf *(* load_xpm_data) (const char **data);
GdkPixbuf *pixbuf; GdkPixbuf *pixbuf;
if (file_formats[XPM_FILE_FORMAT_INDEX].module == NULL) { if (file_formats[XPM_FILE_FORMAT_INDEX].module == NULL)
gdk_pixbuf_load_module(&file_formats[XPM_FILE_FORMAT_INDEX]); gdk_pixbuf_load_module (&file_formats[XPM_FILE_FORMAT_INDEX]);
}
if (file_formats[XPM_FILE_FORMAT_INDEX].module == NULL) { if (file_formats[XPM_FILE_FORMAT_INDEX].module == NULL) {
g_warning("Can't find gdk-pixbuf module for parsing inline XPM data"); g_warning ("Can't find gdk-pixbuf module for parsing inline XPM data");
return NULL;
} else if (file_formats[XPM_FILE_FORMAT_INDEX].load_xpm_data == NULL) {
g_warning("gdk-pixbuf XPM module lacks XPM data capability");
return NULL;
} else {
load_xpm_data = file_formats[XPM_FILE_FORMAT_INDEX].load_xpm_data;
}
pixbuf = load_xpm_data(data);
return pixbuf;
}
/**
* gdk_pixbuf_animation_new_from_file:
* @filename: The filename.
*
* Creates a new @GdkPixbufAnimation with @filename loaded as the animation. If
* @filename doesn't exist or is an invalid file, the @n_frames member will be
* 0. If @filename is a static image (and not an animation) then the @n_frames
* member will be 1.
*
* Return value: A newly created GdkPixbufAnimation.
**/
GdkPixbufAnimation *
gdk_pixbuf_animation_new_from_file (const gchar *filename)
{
GdkPixbufAnimation *animation;
gint size;
FILE *f;
char buffer [128];
GdkPixbufModule *image_module;
f = fopen (filename, "r");
if (!f)
return NULL; return NULL;
} else if (file_formats[XPM_FILE_FORMAT_INDEX].load_xpm_data == NULL) {
size = fread (&buffer, 1, sizeof (buffer), f); g_warning ("gdk-pixbuf XPM module lacks XPM data capability");
if (size == 0) {
fclose (f);
return NULL; return NULL;
} } else
load_xpm_data = file_formats[XPM_FILE_FORMAT_INDEX].load_xpm_data;
image_module = gdk_pixbuf_get_module (buffer, size); pixbuf = (* load_xpm_data) (data);
if (image_module){ return pixbuf;
if (image_module->module == NULL)
gdk_pixbuf_load_module (image_module);
if (image_module->load_animation == NULL) {
GdkPixbufFrame *frame;
if (image_module->load == NULL) {
fclose (f);
return NULL;
}
animation = g_new (GdkPixbufAnimation, 1);
frame = g_new (GdkPixbufFrame, 1);
animation->n_frames = 1;
animation->frames = g_list_prepend (NULL, (gpointer) frame);
frame->x_offset = 0;
frame->y_offset = 0;
frame->delay_time = -1;
frame->action = GDK_PIXBUF_FRAME_RETAIN;
fseek (f, 0, SEEK_SET);
frame->pixbuf = (* image_module->load) (f);
fclose (f);
} else {
fseek (f, 0, SEEK_SET);
animation = (* image_module->load_animation) (f);
fclose (f);
}
return animation;
} else {
g_warning ("Unable to find handler for file: %s", filename);
}
fclose (f);
return NULL;
} }

View File

@ -38,7 +38,9 @@ extern "C" {
typedef void (* ModulePreparedNotifyFunc) (GdkPixbuf *pixbuf, gpointer user_data); typedef void (* ModulePreparedNotifyFunc) (GdkPixbuf *pixbuf, gpointer user_data);
typedef void (* ModuleUpdatedNotifyFunc) (GdkPixbuf *pixbuf, gpointer user_data, guint x, guint y, guint width, guint height); typedef void (* ModuleUpdatedNotifyFunc) (GdkPixbuf *pixbuf, gpointer user_data,
guint x, guint y,
guint width, guint height);
typedef struct _GdkPixbufModule GdkPixbufModule; typedef struct _GdkPixbufModule GdkPixbufModule;
struct _GdkPixbufModule { struct _GdkPixbufModule {
@ -46,22 +48,23 @@ struct _GdkPixbufModule {
gboolean (* format_check) (guchar *buffer, int size); gboolean (* format_check) (guchar *buffer, int size);
GModule *module; GModule *module;
GdkPixbuf *(* load) (FILE *f); GdkPixbuf *(* load) (FILE *f);
GdkPixbuf *(* load_xpm_data) (const gchar **data); GdkPixbuf *(* load_xpm_data) (const char **data);
/* Incremental loading */ /* Incremental loading */
gpointer (* begin_load) (ModulePreparedNotifyFunc prepare_func, ModuleUpdatedNotifyFunc update_func, gpointer user_data);
void (* stop_load) (gpointer context); gpointer (* begin_load) (ModulePreparedNotifyFunc prepare_func,
gboolean (* load_increment)(gpointer context, const gchar *buf, guint size); ModuleUpdatedNotifyFunc update_func,
gpointer user_data);
void (* stop_load) (gpointer context);
gboolean (* load_increment) (gpointer context, const guchar *buf, guint size);
/* Animation loading */ /* Animation loading */
GdkPixbufAnimation *(* load_animation) (FILE *f); GdkPixbufAnimation *(* load_animation) (FILE *f);
}; };
GdkPixbufModule *gdk_pixbuf_get_module (gchar *buffer, GdkPixbufModule *gdk_pixbuf_get_module (guchar *buffer, guint size);
gint size); void gdk_pixbuf_load_module (GdkPixbufModule *image_module);
void gdk_pixbuf_load_module (GdkPixbufModule *image_module);

View File

@ -58,7 +58,7 @@ typedef struct {
GdkPixbuf *pixbuf; GdkPixbuf *pixbuf;
GdkPixbufAnimation *animation; GdkPixbufAnimation *animation;
gboolean closed; gboolean closed;
gchar header_buf[LOADER_HEADER_SIZE]; guchar header_buf[LOADER_HEADER_SIZE];
gint header_buf_offset; gint header_buf_offset;
GdkPixbufModule *image_module; GdkPixbufModule *image_module;
gpointer context; gpointer context;
@ -290,7 +290,7 @@ gdk_pixbuf_loader_load_module(GdkPixbufLoader *loader)
} }
static int static int
gdk_pixbuf_loader_eat_header_write (GdkPixbufLoader *loader, const gchar *buf, size_t count) gdk_pixbuf_loader_eat_header_write (GdkPixbufLoader *loader, const guchar *buf, size_t count)
{ {
int nbytes; int nbytes;
GdkPixbufLoaderPrivate *priv = loader->private; GdkPixbufLoaderPrivate *priv = loader->private;
@ -321,7 +321,7 @@ gdk_pixbuf_loader_eat_header_write (GdkPixbufLoader *loader, const gchar *buf, s
* cannot parse the buffer. * cannot parse the buffer.
**/ **/
gboolean gboolean
gdk_pixbuf_loader_write (GdkPixbufLoader *loader, const gchar *buf, size_t count) gdk_pixbuf_loader_write (GdkPixbufLoader *loader, const guchar *buf, size_t count)
{ {
GdkPixbufLoaderPrivate *priv; GdkPixbufLoaderPrivate *priv;

View File

@ -73,7 +73,7 @@ struct _GdkPixbufLoaderClass {
GtkType gdk_pixbuf_loader_get_type (void); GtkType gdk_pixbuf_loader_get_type (void);
GdkPixbufLoader *gdk_pixbuf_loader_new (void); GdkPixbufLoader *gdk_pixbuf_loader_new (void);
gboolean gdk_pixbuf_loader_write (GdkPixbufLoader *loader, gboolean gdk_pixbuf_loader_write (GdkPixbufLoader *loader,
const gchar *buf, const guchar *buf,
size_t count); size_t count);
GdkPixbuf *gdk_pixbuf_loader_get_pixbuf (GdkPixbufLoader *loader); GdkPixbuf *gdk_pixbuf_loader_get_pixbuf (GdkPixbufLoader *loader);
GdkPixbufAnimation *gdk_pixbuf_loader_get_animation (GdkPixbufLoader *loader); GdkPixbufAnimation *gdk_pixbuf_loader_get_animation (GdkPixbufLoader *loader);

View File

@ -167,11 +167,10 @@ gdk_pixbuf_new (ArtPixFormat format, gboolean has_alpha, int bits_per_sample,
ArtPixFormat ArtPixFormat
gdk_pixbuf_get_format (GdkPixbuf *pixbuf) gdk_pixbuf_get_format (GdkPixbuf *pixbuf)
{ {
/* Unfortunately, there's nothing else to return */
g_return_val_if_fail (pixbuf != NULL, ART_PIX_RGB); g_return_val_if_fail (pixbuf != NULL, ART_PIX_RGB);
g_assert (pixbuf->art_pixbuf != NULL); g_assert (pixbuf->art_pixbuf != NULL);
return (pixbuf->art_pixbuf->format); return pixbuf->art_pixbuf->format;
} }
/** /**
@ -188,7 +187,7 @@ gdk_pixbuf_get_n_channels (GdkPixbuf *pixbuf)
g_return_val_if_fail (pixbuf != NULL, -1); g_return_val_if_fail (pixbuf != NULL, -1);
g_assert (pixbuf->art_pixbuf != NULL); g_assert (pixbuf->art_pixbuf != NULL);
return (pixbuf->art_pixbuf->n_channels); return pixbuf->art_pixbuf->n_channels;
} }
/** /**
@ -205,7 +204,7 @@ gdk_pixbuf_get_has_alpha (GdkPixbuf *pixbuf)
g_return_val_if_fail (pixbuf != NULL, -1); g_return_val_if_fail (pixbuf != NULL, -1);
g_assert (pixbuf->art_pixbuf != NULL); g_assert (pixbuf->art_pixbuf != NULL);
return (pixbuf->art_pixbuf->has_alpha); return pixbuf->art_pixbuf->has_alpha;
} }
/** /**
@ -222,7 +221,7 @@ gdk_pixbuf_get_bits_per_sample (GdkPixbuf *pixbuf)
g_return_val_if_fail (pixbuf != NULL, -1); g_return_val_if_fail (pixbuf != NULL, -1);
g_assert (pixbuf->art_pixbuf != NULL); g_assert (pixbuf->art_pixbuf != NULL);
return (pixbuf->art_pixbuf->bits_per_sample); return pixbuf->art_pixbuf->bits_per_sample;
} }
/** /**
@ -239,7 +238,7 @@ gdk_pixbuf_get_pixels (GdkPixbuf *pixbuf)
g_return_val_if_fail (pixbuf != NULL, NULL); g_return_val_if_fail (pixbuf != NULL, NULL);
g_assert (pixbuf->art_pixbuf != NULL); g_assert (pixbuf->art_pixbuf != NULL);
return (pixbuf->art_pixbuf->pixels); return pixbuf->art_pixbuf->pixels;
} }
/** /**
@ -256,7 +255,7 @@ gdk_pixbuf_get_width (GdkPixbuf *pixbuf)
g_return_val_if_fail (pixbuf != NULL, -1); g_return_val_if_fail (pixbuf != NULL, -1);
g_assert (pixbuf->art_pixbuf != NULL); g_assert (pixbuf->art_pixbuf != NULL);
return (pixbuf->art_pixbuf->width); return pixbuf->art_pixbuf->width;
} }
/** /**
@ -273,7 +272,7 @@ gdk_pixbuf_get_height (GdkPixbuf *pixbuf)
g_return_val_if_fail (pixbuf != NULL, -1); g_return_val_if_fail (pixbuf != NULL, -1);
g_assert (pixbuf->art_pixbuf != NULL); g_assert (pixbuf->art_pixbuf != NULL);
return (pixbuf->art_pixbuf->height); return pixbuf->art_pixbuf->height;
} }
/** /**
@ -290,33 +289,5 @@ gdk_pixbuf_get_rowstride (GdkPixbuf *pixbuf)
g_return_val_if_fail (pixbuf != NULL, -1); g_return_val_if_fail (pixbuf != NULL, -1);
g_assert (pixbuf->art_pixbuf != NULL); g_assert (pixbuf->art_pixbuf != NULL);
return (pixbuf->art_pixbuf->rowstride); return pixbuf->art_pixbuf->rowstride;
} }
/**
* gdk_pixbuf_animation_destroy:
* @animation: An animation.
* @free_frames: Keep the frames.
*
* Destroys the animation. If @free_frames is set, then the actual image data
* will be free'd as well.
*
**/
void
gdk_pixbuf_animation_destroy (GdkPixbufAnimation *animation,
gboolean free_frames)
{
GList *ptr;
g_return_if_fail (animation != NULL);
for (ptr = animation->frames; ptr; ptr = g_list_next (ptr)) {
if (free_frames)
gdk_pixbuf_unref (((GdkPixbufFrame *)ptr->data)->pixbuf);
g_free (ptr->data);
}
g_list_free (animation->frames);
g_free (animation);
}

View File

@ -40,15 +40,7 @@ typedef struct _GdkPixbuf GdkPixbuf;
typedef struct _GdkPixbufFrame GdkPixbufFrame; typedef struct _GdkPixbufFrame GdkPixbufFrame;
typedef struct _GdkPixbufAnimation GdkPixbufAnimation; typedef struct _GdkPixbufAnimation GdkPixbufAnimation;
typedef enum struct _GdkPixbuf {
{
GDK_PIXBUF_FRAME_RETAIN,
GDK_PIXBUF_FRAME_DISPOSE,
GDK_PIXBUF_FRAME_REVERT
} GdkPixbufFrameAction;
struct _GdkPixbuf
{
/* Reference count */ /* Reference count */
int ref_count; int ref_count;
@ -56,21 +48,36 @@ struct _GdkPixbuf
ArtPixBuf *art_pixbuf; ArtPixBuf *art_pixbuf;
}; };
/* GIF-like animation overlay modes for frames */
typedef enum {
GDK_PIXBUF_FRAME_RETAIN,
GDK_PIXBUF_FRAME_DISPOSE,
GDK_PIXBUF_FRAME_REVERT
} GdkPixbufFrameAction;
struct _GdkPixbufFrame struct _GdkPixbufFrame {
{ /* The pixbuf with this frame's image data */
GdkPixbuf *pixbuf; GdkPixbuf *pixbuf;
gushort x_offset; /* Offsets for overlaying onto the animation's area */
gushort y_offset; int x_offset;
gint delay_time; int y_offset;
/* Frame duration in ms */
int delay_time;
/* Overlay mode */
GdkPixbufFrameAction action; GdkPixbufFrameAction action;
}; };
struct _GdkPixbufAnimation {
/* Reference count */
int ref_count;
struct _GdkPixbufAnimation /* Number of frames */
{
int n_frames; int n_frames;
/* List of GdkPixbufFrame structures */
GList *frames; GList *frames;
}; };
@ -92,35 +99,34 @@ int gdk_pixbuf_get_rowstride (GdkPixbuf *pixbuf);
void gdk_pixbuf_ref (GdkPixbuf *pixbuf); void gdk_pixbuf_ref (GdkPixbuf *pixbuf);
void gdk_pixbuf_unref (GdkPixbuf *pixbuf); void gdk_pixbuf_unref (GdkPixbuf *pixbuf);
/* Constructors */
/* Wrap a libart pixbuf */ /* Wrap a libart pixbuf */
GdkPixbuf *gdk_pixbuf_new_from_art_pixbuf (ArtPixBuf *art_pixbuf); GdkPixbuf *gdk_pixbuf_new_from_art_pixbuf (ArtPixBuf *art_pixbuf);
/* Create a blank pixbuf with an optimal rowstride and a new buffer */ /* Create a blank pixbuf with an optimal rowstride and a new buffer */
GdkPixbuf *gdk_pixbuf_new (ArtPixFormat format, gboolean has_alpha, int bits_per_sample, GdkPixbuf *gdk_pixbuf_new (ArtPixFormat format, gboolean has_alpha, int bits_per_sample,
int width, int height); int width, int height);
/* Simple loading */ /* Simple loading */
GdkPixbuf *gdk_pixbuf_new_from_file (const char *filename); GdkPixbuf *gdk_pixbuf_new_from_file (const char *filename);
GdkPixbuf *gdk_pixbuf_new_from_data (guchar *data,
ArtPixFormat format,
gboolean has_alpha,
int width, int height,
int rowstride,
ArtDestroyNotify dfunc,
gpointer dfunc_data);
GdkPixbuf *gdk_pixbuf_new_from_xpm_data (const gchar **data);
/* Adding or removing alpha */ GdkPixbuf *gdk_pixbuf_new_from_data (guchar *data,
ArtPixFormat format,
gboolean has_alpha,
int width, int height,
int rowstride,
ArtDestroyNotify dfunc,
gpointer dfunc_data);
GdkPixbuf *gdk_pixbuf_new_from_xpm_data (const char **data);
/* Adding an alpha channel */
GdkPixbuf *gdk_pixbuf_add_alpha (GdkPixbuf *pixbuf, gboolean substitute_color, GdkPixbuf *gdk_pixbuf_add_alpha (GdkPixbuf *pixbuf, gboolean substitute_color,
guchar r, guchar g, guchar b); guchar r, guchar g, guchar b);
/* Rendering to a drawable */ /* Rendering to a drawable */
/* Alpha compositing mode */
typedef enum { typedef enum {
GDK_PIXBUF_ALPHA_BILEVEL, GDK_PIXBUF_ALPHA_BILEVEL,
GDK_PIXBUF_ALPHA_FULL GDK_PIXBUF_ALPHA_FULL
@ -149,7 +155,6 @@ void gdk_pixbuf_render_to_drawable_alpha (GdkPixbuf *pixbuf, GdkDrawable *drawab
GdkRgbDither dither, GdkRgbDither dither,
int x_dither, int y_dither); int x_dither, int y_dither);
/* Fetching a region from a drawable */ /* Fetching a region from a drawable */
GdkPixbuf *gdk_pixbuf_get_from_drawable (GdkPixbuf *dest, GdkPixbuf *gdk_pixbuf_get_from_drawable (GdkPixbuf *dest,
GdkDrawable *src, GdkColormap *cmap, GdkDrawable *src, GdkColormap *cmap,
@ -157,14 +162,12 @@ GdkPixbuf *gdk_pixbuf_get_from_drawable (GdkPixbuf *dest,
int dest_x, int dest_y, int dest_x, int dest_y,
int width, int height); int width, int height);
/* Animation support */
/* Animation loading */ GdkPixbufAnimation *gdk_pixbuf_animation_new_from_file (const char *filename);
GdkPixbufAnimation *gdk_pixbuf_animation_new_from_file (const char *filename);
void gdk_pixbuf_animation_destroy (GdkPixbufAnimation *animation,
gboolean free_frames);
void gdk_pixbuf_animation_ref (GdkPixbufAnimation *animation);
void gdk_pixbuf_animation_unref (GdkPixbufAnimation *animation);

View File

@ -210,7 +210,7 @@ gif_read (GifContext *context, guchar *buffer, size_t len)
return retval; return retval;
} else { } else {
#ifdef IO_GIFDEBUG #ifdef IO_GIFDEBUG
// g_print ("\tlooking for %d bytes. size == %d, ptr == %d\n", len, context->size, context->ptr); /* g_print ("\tlooking for %d bytes. size == %d, ptr == %d\n", len, context->size, context->ptr); */
#endif #endif
if ((context->size - context->ptr) >= len) { if ((context->size - context->ptr) >= len) {
#ifdef IO_GIFDEBUG #ifdef IO_GIFDEBUG
@ -378,7 +378,7 @@ static int
GetDataBlock (GifContext *context, GetDataBlock (GifContext *context,
unsigned char *buf) unsigned char *buf)
{ {
// unsigned char count; /* unsigned char count; */
if (!gif_read (context, &context->block_count, 1)) { if (!gif_read (context, &context->block_count, 1)) {
/*g_message (_("GIF: error in getting DataBlock size\n"));*/ /*g_message (_("GIF: error in getting DataBlock size\n"));*/
@ -1107,9 +1107,11 @@ image_stop_load (gpointer data)
{ {
GifContext *context = (GifContext *) data; GifContext *context = (GifContext *) data;
/* FIXME: free the animation data */
if (context->pixbuf) if (context->pixbuf)
gdk_pixbuf_unref (context->pixbuf); gdk_pixbuf_unref (context->pixbuf);
// g_free (context->buf); /* g_free (context->buf); */
g_free (context); g_free (context);
} }
@ -1180,6 +1182,7 @@ image_load_animation (FILE *file)
context = new_context (); context = new_context ();
context->animation = g_new (GdkPixbufAnimation, 1); context->animation = g_new (GdkPixbufAnimation, 1);
context->animation->ref_count = 1;
context->animation->n_frames = 0; context->animation->n_frames = 0;
context->animation->frames = NULL; context->animation->frames = NULL;
context->file = file; context->file = file;

View File

@ -5,7 +5,7 @@
* *
* Authors: Michael Zucchi <zucchi@zedzone.mmc.com.au> * Authors: Michael Zucchi <zucchi@zedzone.mmc.com.au>
* Cody Russell <bratsche@dfw.net> * Cody Russell <bratsche@dfw.net>
* Federico * Federico Mena-Quintero <federico@gimp.org>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public * modify it under the terms of the GNU Library General Public
@ -952,7 +952,7 @@ rgbconvert (GdkImage *image, art_u8 *pixels, int rowstride, int alpha, GdkColorm
if (v->red_mask == 0xf800 && v->green_mask == 0x7e0 && v->blue_mask == 0x1f if (v->red_mask == 0xf800 && v->green_mask == 0x7e0 && v->blue_mask == 0x1f
&& image->bpp == 16) && image->bpp == 16)
bank = 3; bank = 3;
break; break;
case 24: case 24:
case 32: case 32:
if (v->red_mask == 0xff0000 && v->green_mask == 0xff00 && v->blue_mask == 0xff if (v->red_mask == 0xff0000 && v->green_mask == 0xff00 && v->blue_mask == 0xff
@ -1030,7 +1030,7 @@ gdk_pixbuf_get_from_drawable (GdkPixbuf *dest,
int width, int height) int width, int height)
{ {
GdkWindowType window_type; GdkWindowType window_type;
gint src_width, src_height; int src_width, src_height;
ArtPixBuf *apb = NULL; ArtPixBuf *apb = NULL;
GdkImage *image; GdkImage *image;
int rowstride, bpp, alpha; int rowstride, bpp, alpha;
@ -1076,7 +1076,7 @@ gdk_pixbuf_get_from_drawable (GdkPixbuf *dest,
if (window_type != GDK_WINDOW_PIXMAP) { if (window_type != GDK_WINDOW_PIXMAP) {
int ret; int ret;
gint src_xorigin, src_yorigin; int src_xorigin, src_yorigin;
int screen_width, screen_height; int screen_width, screen_height;
int screen_srcx, screen_srcy; int screen_srcx, screen_srcy;

View File

@ -58,7 +58,7 @@ typedef struct {
GdkPixbuf *pixbuf; GdkPixbuf *pixbuf;
GdkPixbufAnimation *animation; GdkPixbufAnimation *animation;
gboolean closed; gboolean closed;
gchar header_buf[LOADER_HEADER_SIZE]; guchar header_buf[LOADER_HEADER_SIZE];
gint header_buf_offset; gint header_buf_offset;
GdkPixbufModule *image_module; GdkPixbufModule *image_module;
gpointer context; gpointer context;
@ -290,7 +290,7 @@ gdk_pixbuf_loader_load_module(GdkPixbufLoader *loader)
} }
static int static int
gdk_pixbuf_loader_eat_header_write (GdkPixbufLoader *loader, const gchar *buf, size_t count) gdk_pixbuf_loader_eat_header_write (GdkPixbufLoader *loader, const guchar *buf, size_t count)
{ {
int nbytes; int nbytes;
GdkPixbufLoaderPrivate *priv = loader->private; GdkPixbufLoaderPrivate *priv = loader->private;
@ -321,7 +321,7 @@ gdk_pixbuf_loader_eat_header_write (GdkPixbufLoader *loader, const gchar *buf, s
* cannot parse the buffer. * cannot parse the buffer.
**/ **/
gboolean gboolean
gdk_pixbuf_loader_write (GdkPixbufLoader *loader, const gchar *buf, size_t count) gdk_pixbuf_loader_write (GdkPixbufLoader *loader, const guchar *buf, size_t count)
{ {
GdkPixbufLoaderPrivate *priv; GdkPixbufLoaderPrivate *priv;

View File

@ -73,7 +73,7 @@ struct _GdkPixbufLoaderClass {
GtkType gdk_pixbuf_loader_get_type (void); GtkType gdk_pixbuf_loader_get_type (void);
GdkPixbufLoader *gdk_pixbuf_loader_new (void); GdkPixbufLoader *gdk_pixbuf_loader_new (void);
gboolean gdk_pixbuf_loader_write (GdkPixbufLoader *loader, gboolean gdk_pixbuf_loader_write (GdkPixbufLoader *loader,
const gchar *buf, const guchar *buf,
size_t count); size_t count);
GdkPixbuf *gdk_pixbuf_loader_get_pixbuf (GdkPixbufLoader *loader); GdkPixbuf *gdk_pixbuf_loader_get_pixbuf (GdkPixbufLoader *loader);
GdkPixbufAnimation *gdk_pixbuf_loader_get_animation (GdkPixbufLoader *loader); GdkPixbufAnimation *gdk_pixbuf_loader_get_animation (GdkPixbufLoader *loader);