forked from AuroraMiddleware/gtk
7ef5dec32d
1999-10-20 Federico Mena Quintero <federico@redhat.com> * src/gdk-pixbuf.h (GdkPixbuf): Removed the unref_fn field. Now all memory management of the buffer is done by libart. * src/gdk-pixbuf.c (gdk_pixbuf_unref): Do destruction here. Removed gdk_pixbuf_destroy, gdk_pixbuf_duplicate. * src/gdk-pixbuf-data.c (gdk_pixbuf_new_from_data): Implemented in terms of the libart functions. Removed the old code. * src/gdk-pixbuf-io.c (image_handler_load): Removed the save symbols. Saving will not be implemented in GdkPixbuf. * src/io-gif.c: Removed the saving stub. (image_load): Fixed memory management to fail gracefully if we run out of memory while loading the image. Close the gif file when we are done. This still needs more error handling for the DGif functions. * src/io-jpeg.c (image_load): Some robustness fixes. * src/io-png.c: Removed the saving stuff. (image_load): Some memory management fixes. * src/io-tiff.c (image_load): Ditto. * src/io-xpm.c (pixbuf_create_from_xpm): Ditto.
102 lines
2.5 KiB
C
102 lines
2.5 KiB
C
/* GdkPixbuf library - Basic memory management
|
||
*
|
||
* Copyright (C) 1999 The Free Software Foundation
|
||
*
|
||
* Authors: Mark Crichton <crichton@gimp.org>
|
||
* Miguel de Icaza <miguel@gnu.org>
|
||
* Federico Mena-Quintero <federico@gimp.org>
|
||
*
|
||
* 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 <math.h>
|
||
#include <libart_lgpl/art_misc.h>
|
||
#include <libart_lgpl/art_affine.h>
|
||
#include <libart_lgpl/art_pixbuf.h>
|
||
#include <libart_lgpl/art_rgb_pixbuf_affine.h>
|
||
#include <libart_lgpl/art_alphagamma.h>
|
||
#include "gdk-pixbuf.h"
|
||
|
||
|
||
|
||
/* Reference counting */
|
||
|
||
/**
|
||
* gdk_pixbuf_ref:
|
||
* @pixbuf: A pixbuf.
|
||
*
|
||
* Adds a reference to a pixbuf. It must be released afterwards using
|
||
* gdk_pixbuf_unref().
|
||
**/
|
||
void
|
||
gdk_pixbuf_ref (GdkPixbuf *pixbuf)
|
||
{
|
||
g_return_if_fail (pixbuf != NULL);
|
||
g_return_if_fail (pixbuf->ref_count > 0);
|
||
|
||
pixbuf->ref_count++;
|
||
}
|
||
|
||
/**
|
||
* gdk_pixbuf_unref:
|
||
* @pixbuf: A pixbuf.
|
||
*
|
||
* Removes a reference from a pixbuf. It will be destroyed when the reference
|
||
* count drops to zero.
|
||
**/
|
||
void
|
||
gdk_pixbuf_unref (GdkPixbuf *pixbuf)
|
||
{
|
||
g_return_if_fail (pixbuf != NULL);
|
||
g_return_if_fail (pixbuf->ref_count > 0);
|
||
|
||
pixbuf->ref_count--;
|
||
|
||
if (pixbuf->ref_count == 0) {
|
||
art_pixbuf_free (pixbuf->art_pixbuf);
|
||
pixbuf->art_pixbuf = NULL;
|
||
g_free (pixbuf);
|
||
}
|
||
}
|
||
|
||
|
||
|
||
/* Wrap a libart pixbuf */
|
||
|
||
/**
|
||
* gdk_pixbuf_new_from_art_pixbuf:
|
||
* @art_pixbuf: A libart pixbuf.
|
||
*
|
||
* Creates a &GdkPixbuf by wrapping a libart pixbuf.
|
||
*
|
||
* Return value: A newly-created &GdkPixbuf structure with a reference count of
|
||
* 1.
|
||
**/
|
||
GdkPixbuf *
|
||
gdk_pixbuf_new_from_art_pixbuf (ArtPixBuf *art_pixbuf)
|
||
{
|
||
GdkPixbuf *pixbuf;
|
||
|
||
g_return_val_if_fail (art_pixbuf != NULL, NULL);
|
||
|
||
pixbuf = g_new (GdkPixbuf, 1);
|
||
pixbuf->ref_count = 1;
|
||
pixbuf->art_pixbuf = art_pixbuf;
|
||
|
||
return pixbuf;
|
||
}
|