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>
|
2000-01-05 21:33:58 +00:00
|
|
|
|
#include <libart_lgpl/art_filterlevel.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-12-10 23:15:20 +00:00
|
|
|
|
/* GdkPixbuf structures */
|
1999-10-18 19:29:45 +00:00
|
|
|
|
typedef struct _GdkPixbuf GdkPixbuf;
|
1999-12-10 23:15:20 +00:00
|
|
|
|
typedef struct _GdkPixbufFrame GdkPixbufFrame;
|
|
|
|
|
typedef struct _GdkPixbufAnimation GdkPixbufAnimation;
|
|
|
|
|
|
2000-01-02 03:59:22 +00:00
|
|
|
|
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
|
|
|
|
|
2000-01-02 03:59:22 +00:00
|
|
|
|
/* GIF-like animation overlay modes for frames */
|
|
|
|
|
typedef enum {
|
|
|
|
|
GDK_PIXBUF_FRAME_RETAIN,
|
|
|
|
|
GDK_PIXBUF_FRAME_DISPOSE,
|
|
|
|
|
GDK_PIXBUF_FRAME_REVERT
|
|
|
|
|
} GdkPixbufFrameAction;
|
1999-12-10 23:15:20 +00:00
|
|
|
|
|
2000-01-02 03:59:22 +00:00
|
|
|
|
struct _GdkPixbufFrame {
|
|
|
|
|
/* The pixbuf with this frame's image data */
|
1999-12-10 23:15:20 +00:00
|
|
|
|
GdkPixbuf *pixbuf;
|
|
|
|
|
|
2000-01-02 03:59:22 +00:00
|
|
|
|
/* Offsets for overlaying onto the animation's area */
|
|
|
|
|
int x_offset;
|
|
|
|
|
int y_offset;
|
|
|
|
|
|
|
|
|
|
/* Frame duration in ms */
|
|
|
|
|
int delay_time;
|
|
|
|
|
|
|
|
|
|
/* Overlay mode */
|
1999-12-10 23:15:20 +00:00
|
|
|
|
GdkPixbufFrameAction action;
|
|
|
|
|
};
|
|
|
|
|
|
2000-01-02 03:59:22 +00:00
|
|
|
|
struct _GdkPixbufAnimation {
|
|
|
|
|
/* Reference count */
|
|
|
|
|
int ref_count;
|
1999-12-10 23:15:20 +00:00
|
|
|
|
|
2000-01-02 03:59:22 +00:00
|
|
|
|
/* Number of frames */
|
1999-12-10 23:15:20 +00:00
|
|
|
|
int n_frames;
|
2000-01-02 03:59:22 +00:00
|
|
|
|
|
|
|
|
|
/* List of GdkPixbufFrame structures */
|
1999-12-10 23:15:20 +00:00
|
|
|
|
GList *frames;
|
|
|
|
|
};
|
|
|
|
|
|
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-20 21:20:49 +00:00
|
|
|
|
/* Wrap a libart pixbuf */
|
|
|
|
|
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 */
|
|
|
|
|
|
2000-01-02 03:59:22 +00:00
|
|
|
|
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-20 21:20:49 +00:00
|
|
|
|
|
2000-01-02 03:59:22 +00:00
|
|
|
|
GdkPixbuf *gdk_pixbuf_new_from_xpm_data (const char **data);
|
1999-12-02 17:45:47 +00:00
|
|
|
|
|
2000-01-02 03:59:22 +00:00
|
|
|
|
/* Adding an alpha channel */
|
1999-12-02 17:45:47 +00:00
|
|
|
|
GdkPixbuf *gdk_pixbuf_add_alpha (GdkPixbuf *pixbuf, gboolean substitute_color,
|
|
|
|
|
guchar r, guchar g, guchar b);
|
|
|
|
|
|
1999-10-27 23:36:44 +00:00
|
|
|
|
/* Rendering to a drawable */
|
|
|
|
|
|
2000-01-02 03:59:22 +00:00
|
|
|
|
/* Alpha compositing mode */
|
1999-10-27 23:36:44 +00:00
|
|
|
|
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-12-08 21:17:53 +00:00
|
|
|
|
/* Fetching a region from a drawable */
|
|
|
|
|
GdkPixbuf *gdk_pixbuf_get_from_drawable (GdkPixbuf *dest,
|
|
|
|
|
GdkDrawable *src, GdkColormap *cmap,
|
|
|
|
|
int src_x, int src_y,
|
|
|
|
|
int dest_x, int dest_y,
|
|
|
|
|
int width, int height);
|
1999-12-10 23:15:20 +00:00
|
|
|
|
|
2000-01-05 21:33:58 +00:00
|
|
|
|
/* Scaling */
|
|
|
|
|
|
|
|
|
|
void gdk_pixbuf_scale (GdkPixbuf *src,
|
|
|
|
|
GdkPixbuf *dest,
|
|
|
|
|
int dest_x,
|
|
|
|
|
int dest_y,
|
|
|
|
|
int dest_width,
|
|
|
|
|
int dest_height,
|
|
|
|
|
double offset_x,
|
|
|
|
|
double offset_y,
|
|
|
|
|
double scale_x,
|
|
|
|
|
double scale_y,
|
|
|
|
|
ArtFilterLevel filter_level);
|
|
|
|
|
void gdk_pixbuf_composite (GdkPixbuf *src,
|
|
|
|
|
GdkPixbuf *dest,
|
|
|
|
|
int dest_x,
|
|
|
|
|
int dest_y,
|
|
|
|
|
int dest_width,
|
|
|
|
|
int dest_height,
|
|
|
|
|
double offset_x,
|
|
|
|
|
double offset_y,
|
|
|
|
|
double scale_x,
|
|
|
|
|
double scale_y,
|
|
|
|
|
ArtFilterLevel filter_level,
|
|
|
|
|
int overall_alpha);
|
|
|
|
|
void gdk_pixbuf_composite_color (GdkPixbuf *src,
|
|
|
|
|
GdkPixbuf *dest,
|
|
|
|
|
int dest_x,
|
|
|
|
|
int dest_y,
|
|
|
|
|
int dest_width,
|
|
|
|
|
int dest_height,
|
|
|
|
|
double offset_x,
|
|
|
|
|
double offset_y,
|
|
|
|
|
double scale_x,
|
|
|
|
|
double scale_y,
|
|
|
|
|
ArtFilterLevel filter_level,
|
|
|
|
|
int overall_alpha,
|
|
|
|
|
int check_x,
|
|
|
|
|
int check_y,
|
|
|
|
|
int check_size,
|
|
|
|
|
art_u32 color1,
|
|
|
|
|
art_u32 color2);
|
|
|
|
|
|
|
|
|
|
GdkPixbuf *gdk_pixbuf_scale_simple (GdkPixbuf *src,
|
|
|
|
|
int dest_width,
|
|
|
|
|
int dest_height,
|
|
|
|
|
ArtFilterLevel filter_level);
|
|
|
|
|
GdkPixbuf *gdk_pixbuf_composite_color_simple (GdkPixbuf *src,
|
|
|
|
|
int dest_width,
|
|
|
|
|
int dest_height,
|
|
|
|
|
ArtFilterLevel filter_level,
|
|
|
|
|
int overall_alpha,
|
|
|
|
|
int check_size,
|
|
|
|
|
art_u32 color1,
|
|
|
|
|
art_u32 color2);
|
|
|
|
|
|
2000-01-02 03:59:22 +00:00
|
|
|
|
/* Animation support */
|
1999-12-10 23:15:20 +00:00
|
|
|
|
|
2000-01-02 03:59:22 +00:00
|
|
|
|
GdkPixbufAnimation *gdk_pixbuf_animation_new_from_file (const char *filename);
|
1999-12-10 23:15:20 +00:00
|
|
|
|
|
2000-01-02 03:59:22 +00:00
|
|
|
|
void gdk_pixbuf_animation_ref (GdkPixbufAnimation *animation);
|
|
|
|
|
void gdk_pixbuf_animation_unref (GdkPixbufAnimation *animation);
|
1999-12-11 00:21:27 +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
|