1999-10-20 21:20:49 +00:00
|
|
|
|
/* GdkPixbuf library - Main header file
|
1999-10-18 19:29:45 +00:00
|
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef GDK_PIXBUF_H
|
|
|
|
|
#define GDK_PIXBUF_H
|
1999-01-04 23:53:12 +00:00
|
|
|
|
|
1999-01-05 21:27:07 +00:00
|
|
|
|
#include <libart_lgpl/art_misc.h>
|
1999-01-04 23:53:12 +00:00
|
|
|
|
#include <libart_lgpl/art_pixbuf.h>
|
1999-10-27 23:36:44 +00:00
|
|
|
|
#include <gdk/gdk.h>
|
1999-01-04 23:53:12 +00:00
|
|
|
|
|
1999-10-18 19:29:45 +00:00
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
1999-09-22 22:30:51 +00:00
|
|
|
|
|
1999-10-20 21:20:49 +00:00
|
|
|
|
/* GdkPixbuf structure */
|
|
|
|
|
|
1999-10-18 19:29:45 +00:00
|
|
|
|
typedef struct _GdkPixbuf GdkPixbuf;
|
|
|
|
|
|
|
|
|
|
struct _GdkPixbuf {
|
1999-10-20 21:20:49 +00:00
|
|
|
|
/* Reference count */
|
1999-10-18 19:29:45 +00:00
|
|
|
|
int ref_count;
|
1999-10-20 21:20:49 +00:00
|
|
|
|
|
|
|
|
|
/* Libart pixbuf */
|
1999-10-18 19:29:45 +00:00
|
|
|
|
ArtPixBuf *art_pixbuf;
|
1999-09-22 22:30:51 +00:00
|
|
|
|
};
|
1999-01-04 23:53:12 +00:00
|
|
|
|
|
1999-10-18 19:29:45 +00:00
|
|
|
|
|
|
|
|
|
|
1999-10-28 19:00:02 +00:00
|
|
|
|
/* Convenience functions */
|
1999-10-27 23:36:44 +00:00
|
|
|
|
|
1999-10-28 19:00:02 +00:00
|
|
|
|
ArtPixFormat gdk_pixbuf_get_format (GdkPixbuf *pixbuf);
|
|
|
|
|
int gdk_pixbuf_get_n_channels (GdkPixbuf *pixbuf);
|
|
|
|
|
int gdk_pixbuf_get_has_alpha (GdkPixbuf *pixbuf);
|
|
|
|
|
int gdk_pixbuf_get_bits_per_sample (GdkPixbuf *pixbuf);
|
|
|
|
|
guchar *gdk_pixbuf_get_pixels (GdkPixbuf *pixbuf);
|
|
|
|
|
int gdk_pixbuf_get_width (GdkPixbuf *pixbuf);
|
|
|
|
|
int gdk_pixbuf_get_height (GdkPixbuf *pixbuf);
|
|
|
|
|
int gdk_pixbuf_get_rowstride (GdkPixbuf *pixbuf);
|
1999-10-27 23:36:44 +00:00
|
|
|
|
|
1999-10-20 21:20:49 +00:00
|
|
|
|
/* Reference counting */
|
1999-10-18 19:29:45 +00:00
|
|
|
|
|
|
|
|
|
void gdk_pixbuf_ref (GdkPixbuf *pixbuf);
|
|
|
|
|
void gdk_pixbuf_unref (GdkPixbuf *pixbuf);
|
|
|
|
|
|
1999-10-28 19:00:02 +00:00
|
|
|
|
/* Constructors */
|
1999-10-20 21:20:49 +00:00
|
|
|
|
/* Wrap a libart pixbuf */
|
1999-10-18 19:29:45 +00:00
|
|
|
|
|
1999-10-20 21:20:49 +00:00
|
|
|
|
GdkPixbuf *gdk_pixbuf_new_from_art_pixbuf (ArtPixBuf *art_pixbuf);
|
1999-07-16 20:35:21 +00:00
|
|
|
|
|
1999-10-27 23:36:44 +00:00
|
|
|
|
/* 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,
|
|
|
|
|
int width, int height);
|
1999-10-27 17:28:44 +00:00
|
|
|
|
|
1999-10-20 21:20:49 +00:00
|
|
|
|
/* Simple loading */
|
|
|
|
|
|
|
|
|
|
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);
|
1999-10-22 21:06:36 +00:00
|
|
|
|
GdkPixbuf *gdk_pixbuf_new_from_xpm_data (const gchar **data);
|
1999-10-20 21:20:49 +00:00
|
|
|
|
|
1999-10-27 23:36:44 +00:00
|
|
|
|
/* Rendering to a drawable */
|
|
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
|
GDK_PIXBUF_ALPHA_BILEVEL,
|
|
|
|
|
GDK_PIXBUF_ALPHA_FULL
|
|
|
|
|
} GdkPixbufAlphaMode;
|
|
|
|
|
|
|
|
|
|
void gdk_pixbuf_render_threshold_alpha (GdkPixbuf *pixbuf, GdkBitmap *bitmap,
|
|
|
|
|
int src_x, int src_y,
|
|
|
|
|
int dest_x, int dest_y,
|
|
|
|
|
int width, int height,
|
|
|
|
|
int alpha_threshold);
|
|
|
|
|
|
1999-10-28 23:25:02 +00:00
|
|
|
|
void gdk_pixbuf_render_to_drawable (GdkPixbuf *pixbuf,
|
|
|
|
|
GdkDrawable *drawable, GdkGC *gc,
|
1999-10-27 23:36:44 +00:00
|
|
|
|
int src_x, int src_y,
|
|
|
|
|
int dest_x, int dest_y,
|
|
|
|
|
int width, int height,
|
|
|
|
|
GdkRgbDither dither,
|
|
|
|
|
int x_dither, int y_dither);
|
|
|
|
|
|
1999-10-28 23:25:02 +00:00
|
|
|
|
void gdk_pixbuf_render_to_drawable_alpha (GdkPixbuf *pixbuf, GdkDrawable *drawable,
|
|
|
|
|
int src_x, int src_y,
|
|
|
|
|
int dest_x, int dest_y,
|
|
|
|
|
int width, int height,
|
|
|
|
|
GdkPixbufAlphaMode alpha_mode,
|
|
|
|
|
int alpha_threshold,
|
|
|
|
|
GdkRgbDither dither,
|
|
|
|
|
int x_dither, int y_dither);
|
|
|
|
|
|
1999-10-20 21:20:49 +00:00
|
|
|
|
/* Transformations */
|
|
|
|
|
#if 0
|
|
|
|
|
GdkPixbuf *gdk_pixbuf_scale (const GdkPixbuf *pixbuf, gint w, gint h);
|
|
|
|
|
GdkPixbuf *gdk_pixbuf_rotate (GdkPixbuf *pixbuf, gdouble angle);
|
|
|
|
|
#endif
|
1999-01-04 23:53:12 +00:00
|
|
|
|
|
1999-10-18 19:29:45 +00:00
|
|
|
|
|
1999-10-08 23:01:05 +00:00
|
|
|
|
|
1999-10-18 19:29:45 +00:00
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
1999-10-08 23:01:05 +00:00
|
|
|
|
|
1999-10-18 19:29:45 +00:00
|
|
|
|
#endif
|