1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
|
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
/* eel-gdk-pixbuf-extensions.h: Routines to augment what's in gdk-pixbuf.
Copyright (C) 2000 Eazel, Inc.
The Mate 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.
The Mate 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 the Mate Library; see the file COPYING.LIB. If not,
write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
Boston, MA 02110-1301, USA.
Authors: Darin Adler <darin@eazel.com>
Ramiro Estrugo <ramiro@eazel.com>
*/
#ifndef EEL_GDK_PIXBUF_EXTENSIONS_H
#define EEL_GDK_PIXBUF_EXTENSIONS_H
#include <eel/eel-art-extensions.h>
#include <gdk-pixbuf/gdk-pixbuf.h>
#include <gdk/gdk.h>
#include <gio/gio.h>
#include <gtk/gtk.h>
#define EEL_OPACITY_FULLY_TRANSPARENT 0
#define EEL_OPACITY_FULLY_OPAQUE 255
extern const EelIRect eel_gdk_pixbuf_whole_pixbuf;
typedef struct EelPixbufLoadHandle EelPixbufLoadHandle;
typedef void (* EelPixbufLoadCallback) (GError *error,
GdkPixbuf *pixbuf,
gpointer callback_data);
/* Loading a GdkPixbuf with a URI. */
GdkPixbuf * eel_gdk_pixbuf_load (const char *uri);
GdkPixbuf * eel_gdk_pixbuf_load_from_stream (GInputStream *stream);
GdkPixbuf * eel_gdk_pixbuf_load_from_stream_at_size (GInputStream *stream,
int size);
/* Same thing async. */
EelPixbufLoadHandle *eel_gdk_pixbuf_load_async (const char *uri,
int priority,
EelPixbufLoadCallback callback,
gpointer callback_data);
void eel_cancel_gdk_pixbuf_load (EelPixbufLoadHandle *handle);
GdkPixbuf * eel_gdk_pixbuf_scale_down_to_fit (GdkPixbuf *pixbuf,
int max_width,
int max_height);
GdkPixbuf * eel_gdk_pixbuf_scale_to_fit (GdkPixbuf *pixbuf,
int max_width,
int max_height);
double eel_gdk_scale_to_fit_factor (int width,
int height,
int max_width,
int max_height,
int *scaled_width,
int *scaled_height);
GdkPixbuf * eel_gdk_pixbuf_scale_to_min (GdkPixbuf *pixbuf,
int min_width,
int min_height);
double eel_gdk_scale_to_min_factor (int width,
int height,
int min_width,
int min_height,
int *scaled_width,
int *scaled_height);
/* return average color values for each component (argb) */
guint32 eel_gdk_pixbuf_average_value (GdkPixbuf *pixbuf);
void eel_gdk_pixbuf_fill_rectangle_with_color (GdkPixbuf *pixbuf,
EelIRect area,
guint32 color);
/* Save a pixbuf to a png file. Return value indicates succss/TRUE or failure/FALSE */
gboolean eel_gdk_pixbuf_save_to_file (const GdkPixbuf *pixbuf,
const char *file_name);
void eel_gdk_pixbuf_ref_if_not_null (GdkPixbuf *pixbuf_or_null);
void eel_gdk_pixbuf_unref_if_not_null (GdkPixbuf *pixbuf_or_null);
/* Copy a pixbuf to an area of a GdkDrawable */
void eel_gdk_pixbuf_draw_to_drawable (const GdkPixbuf *pixbuf,
#if GTK_CHECK_VERSION (3, 0, 0)
cairo_t *cr,
#else
GdkDrawable *drawable,
#endif
int source_x,
int source_y,
EelIRect destination_area);
/* Copy a pixbuf to an area of another pixbuf */
void eel_gdk_pixbuf_draw_to_pixbuf (const GdkPixbuf *pixbuf,
GdkPixbuf *destination_pixbuf,
int source_x,
int source_y,
EelIRect destination_area);
/* Composite one pixbuf over another with the given opacity */
void eel_gdk_pixbuf_draw_to_pixbuf_alpha (const GdkPixbuf *pixbuf,
GdkPixbuf *destination_pixbuf,
int source_x,
int source_y,
EelIRect destination_area,
int opacity,
GdkInterpType interpolation_mode);
/* Create a pixbuf from a sub area of another pixbuf */
GdkPixbuf * eel_gdk_pixbuf_new_from_pixbuf_sub_area (GdkPixbuf *pixbuf,
EelIRect area);
/* Create a pixbuf from an existing buffer. */
GdkPixbuf * eel_gdk_pixbuf_new_from_existing_buffer (guchar *buffer,
int buffer_rowstride,
gboolean buffer_has_alpha,
EelIRect area);
/* Determine whether a pixbuf is valid or not */
gboolean eel_gdk_pixbuf_is_valid (const GdkPixbuf *pixbuf);
/* Access the dimensions of a pixbuf. */
EelDimensions eel_gdk_pixbuf_get_dimensions (const GdkPixbuf *pixbuf);
/* Return the intersection of the pixbuf with the given rectangle. */
EelIRect eel_gdk_pixbuf_intersect (const GdkPixbuf *pixbuf,
int pixbuf_x,
int pixbuf_y,
EelIRect rectangle);
/* Scales large pixbufs down fast */
GdkPixbuf * eel_gdk_pixbuf_scale_down (GdkPixbuf *pixbuf,
int dest_width,
int dest_height);
GdkPixbuf * eel_gdk_pixbuf_render (GdkPixbuf *pixbuf,
guint render_mode,
guint saturation,
guint brightness,
guint lighten_value,
#if GTK_CHECK_VERSION(3,0,0)
GdkRGBA *color);
#else
guint color);
#endif
#endif /* EEL_GDK_PIXBUF_EXTENSIONS_H */
|