]> Pileus Git - ~andy/gtk/blob - gdk-pixbuf/gdk-pixbuf.c
3168f76d4dbb11cc954abfd5dbe9b5b0ca257225
[~andy/gtk] / gdk-pixbuf / gdk-pixbuf.c
1 /* GdkPixbuf library - Basic memory management
2  *
3  * Copyright (C) 1999 The Free Software Foundation
4  *
5  * Authors: Mark Crichton <crichton@gimp.org>
6  *          Miguel de Icaza <miguel@gnu.org>
7  *          Federico Mena-Quintero <federico@gimp.org>
8  *
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 2 of the License, or (at your option) any later version.
13  *
14  * This library is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with this library; if not, write to the
21  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22  * Boston, MA 02111-1307, USA.
23  */
24
25 #include <config.h>
26 #include <math.h>
27 #include <stdlib.h>
28 #include <string.h>
29 #include "gdk-pixbuf.h"
30 #include "gdk-pixbuf-private.h"
31
32 static void gdk_pixbuf_class_init  (GdkPixbufClass *klass);
33 static void gdk_pixbuf_finalize    (GObject        *object);
34
35 \f
36
37 static gpointer parent_class;
38
39 GType
40 gdk_pixbuf_get_type (void)
41 {
42         static GType object_type = 0;
43
44         if (!object_type) {
45                 static const GTypeInfo object_info = {
46                         sizeof (GdkPixbufClass),
47                         (GBaseInitFunc) NULL,
48                         (GBaseFinalizeFunc) NULL,
49                         (GClassInitFunc) gdk_pixbuf_class_init,
50                         NULL,           /* class_finalize */
51                         NULL,           /* class_data */
52                         sizeof (GdkPixbuf),
53                         0,              /* n_preallocs */
54                         (GInstanceInitFunc) NULL,
55                 };
56       
57                 g_type_init ();
58                 
59                 object_type = g_type_register_static (G_TYPE_OBJECT,
60                                                       "GdkPixbuf",
61                                                       &object_info, 0);
62         }
63   
64         return object_type;
65 }
66
67 static void
68 gdk_pixbuf_class_init (GdkPixbufClass *klass)
69 {
70         GObjectClass *object_class = G_OBJECT_CLASS (klass);
71         
72         parent_class = g_type_class_peek_parent (klass);
73         
74         object_class->finalize = gdk_pixbuf_finalize;
75 }
76
77 static void
78 gdk_pixbuf_finalize (GObject *object)
79 {
80         GdkPixbuf *pixbuf = GDK_PIXBUF (object);
81         
82         if (pixbuf->destroy_fn)
83                 (* pixbuf->destroy_fn) (pixbuf->pixels, pixbuf->destroy_fn_data);
84         
85         G_OBJECT_CLASS (parent_class)->finalize (object);
86 }
87
88 /**
89  * gdk_pixbuf_ref:
90  * @pixbuf: A pixbuf.
91  *
92  * Adds a reference to a pixbuf. Deprecated; use g_object_ref().
93  *
94  * Return value: The same as the @pixbuf argument.
95  **/
96 GdkPixbuf *
97 gdk_pixbuf_ref (GdkPixbuf *pixbuf)
98 {
99         return (GdkPixbuf *) g_object_ref (G_OBJECT(pixbuf));
100 }
101
102 /**
103  * gdk_pixbuf_unref:
104  * @pixbuf: A pixbuf.
105  *
106  * Removes a reference from a pixbuf. Deprecated; use
107  * g_object_unref().
108  *
109  **/
110 void
111 gdk_pixbuf_unref (GdkPixbuf *pixbuf)
112 {
113         g_object_unref (G_OBJECT (pixbuf));
114 }
115
116 \f
117
118 /* Used as the destroy notification function for gdk_pixbuf_new() */
119 static void
120 free_buffer (guchar *pixels, gpointer data)
121 {
122         free (pixels);
123 }
124
125 /**
126  * gdk_pixbuf_new:
127  * @colorspace: Color space for image.
128  * @has_alpha: Whether the image should have transparency information.
129  * @bits_per_sample: Number of bits per color sample.
130  * @width: Width of image in pixels.
131  * @height: Height of image in pixels.
132  *
133  * Creates a new #GdkPixbuf structure and allocates a buffer for it.  The buffer
134  * has an optimal rowstride.  Note that the buffer is not cleared; you will have
135  * to fill it completely yourself.
136  *
137  * Return value: A newly-created #GdkPixbuf with a reference count of 1, or NULL
138  * if not enough memory could be allocated for the image buffer.
139  **/
140 GdkPixbuf *
141 gdk_pixbuf_new (GdkColorspace colorspace, gboolean has_alpha, int bits_per_sample,
142                 int width, int height)
143 {
144         guchar *buf;
145         int channels;
146         int rowstride;
147
148         g_return_val_if_fail (colorspace == GDK_COLORSPACE_RGB, NULL);
149         g_return_val_if_fail (bits_per_sample == 8, NULL);
150         g_return_val_if_fail (width > 0, NULL);
151         g_return_val_if_fail (height > 0, NULL);
152
153         /* Always align rows to 32-bit boundaries */
154
155         channels = has_alpha ? 4 : 3;
156         rowstride = 4 * ((channels * width + 3) / 4);
157
158         buf = malloc (height * rowstride);
159         if (!buf)
160                 return NULL;
161
162         return gdk_pixbuf_new_from_data (buf, colorspace, has_alpha, bits_per_sample,
163                                          width, height, rowstride,
164                                          free_buffer, NULL);
165 }
166
167 /**
168  * gdk_pixbuf_copy:
169  * @pixbuf: A pixbuf.
170  * 
171  * Creates a new #GdkPixbuf with a copy of the information in the specified
172  * @pixbuf.
173  * 
174  * Return value: A newly-created pixbuf with a reference count of 1, or NULL if
175  * not enough memory could be allocated.
176  **/
177 GdkPixbuf *
178 gdk_pixbuf_copy (const GdkPixbuf *pixbuf)
179 {
180         guchar *buf;
181         int size;
182
183         g_return_val_if_fail (pixbuf != NULL, NULL);
184
185         /* Calculate a semi-exact size.  Here we copy with full rowstrides;
186          * maybe we should copy each row individually with the minimum
187          * rowstride?
188          */
189
190         size = ((pixbuf->height - 1) * pixbuf->rowstride +
191                 pixbuf->width * ((pixbuf->n_channels * pixbuf->bits_per_sample + 7) / 8));
192
193         buf = malloc (size * sizeof (guchar));
194         if (!buf)
195                 return NULL;
196
197         memcpy (buf, pixbuf->pixels, size);
198
199         return gdk_pixbuf_new_from_data (buf,
200                                          pixbuf->colorspace, pixbuf->has_alpha,
201                                          pixbuf->bits_per_sample,
202                                          pixbuf->width, pixbuf->height,
203                                          pixbuf->rowstride,
204                                          free_buffer,
205                                          NULL);
206 }
207
208 /**
209  * gdk_pixbuf_new_subpixbuf:
210  * @src_pixbuf: a #GdkPixbuf
211  * @src_x: X coord in @src_pixbuf
212  * @src_y: Y coord in @src_pixbuf
213  * @width: width of region in @src_pixbuf
214  * @height: height of region in @src_pixbuf
215  * 
216  * Creates a new pixbuf which represents a sub-region of
217  * @src_pixbuf. The new pixbuf shares its pixels with the
218  * original pixbuf, so writing to one affects both.
219  * The new pixbuf holds a reference to @src_pixbuf, so
220  * @src_pixbuf will not be finalized until the new pixbuf
221  * is finalized.
222  * 
223  * Return value: a new pixbuf 
224  **/
225 GdkPixbuf*
226 gdk_pixbuf_new_subpixbuf (GdkPixbuf *src_pixbuf,
227                           int        src_x,
228                           int        src_y,
229                           int        width,
230                           int        height)
231 {
232         guchar *pixels;
233         GdkPixbuf *sub;
234
235         g_return_val_if_fail (GDK_IS_PIXBUF (src_pixbuf), NULL);
236         g_return_val_if_fail (src_x >= 0 && src_x + width <= src_pixbuf->width, NULL);
237         g_return_val_if_fail (src_y >= 0 && src_y + height <= src_pixbuf->height, NULL);
238
239         pixels = (gdk_pixbuf_get_pixels (src_pixbuf)
240                   + src_y * src_pixbuf->rowstride
241                   + src_x * src_pixbuf->n_channels);
242
243         sub = gdk_pixbuf_new_from_data (pixels,
244                                         src_pixbuf->colorspace,
245                                         src_pixbuf->has_alpha,
246                                         src_pixbuf->bits_per_sample,
247                                         width, height,
248                                         src_pixbuf->rowstride,
249                                         NULL, NULL);
250
251         /* Keep a reference to src_pixbuf */
252         g_object_ref (G_OBJECT (src_pixbuf));
253   
254         g_object_set_qdata_full (G_OBJECT (sub),
255                                  g_quark_from_static_string ("gdk-pixbuf-subpixbuf-src"),
256                                  src_pixbuf,
257                                  (GDestroyNotify) g_object_unref);
258
259         return sub;
260 }
261
262 \f
263
264 /* Accessors */
265
266 /**
267  * gdk_pixbuf_get_colorspace:
268  * @pixbuf: A pixbuf.
269  *
270  * Queries the color space of a pixbuf.
271  *
272  * Return value: Color space.
273  **/
274 GdkColorspace
275 gdk_pixbuf_get_colorspace (const GdkPixbuf *pixbuf)
276 {
277         g_return_val_if_fail (pixbuf != NULL, GDK_COLORSPACE_RGB);
278
279         return pixbuf->colorspace;
280 }
281
282 /**
283  * gdk_pixbuf_get_n_channels:
284  * @pixbuf: A pixbuf.
285  *
286  * Queries the number of channels of a pixbuf.
287  *
288  * Return value: Number of channels.
289  **/
290 int
291 gdk_pixbuf_get_n_channels (const GdkPixbuf *pixbuf)
292 {
293         g_return_val_if_fail (pixbuf != NULL, -1);
294
295         return pixbuf->n_channels;
296 }
297
298 /**
299  * gdk_pixbuf_get_has_alpha:
300  * @pixbuf: A pixbuf.
301  *
302  * Queries whether a pixbuf has an alpha channel (opacity information).
303  *
304  * Return value: TRUE if it has an alpha channel, FALSE otherwise.
305  **/
306 gboolean
307 gdk_pixbuf_get_has_alpha (const GdkPixbuf *pixbuf)
308 {
309         g_return_val_if_fail (pixbuf != NULL, -1);
310
311         return pixbuf->has_alpha ? TRUE : FALSE;
312 }
313
314 /**
315  * gdk_pixbuf_get_bits_per_sample:
316  * @pixbuf: A pixbuf.
317  *
318  * Queries the number of bits per color sample in a pixbuf.
319  *
320  * Return value: Number of bits per color sample.
321  **/
322 int
323 gdk_pixbuf_get_bits_per_sample (const GdkPixbuf *pixbuf)
324 {
325         g_return_val_if_fail (pixbuf != NULL, -1);
326
327         return pixbuf->bits_per_sample;
328 }
329
330 /**
331  * gdk_pixbuf_get_pixels:
332  * @pixbuf: A pixbuf.
333  *
334  * Queries a pointer to the pixel data of a pixbuf.
335  *
336  * Return value: A pointer to the pixbuf's pixel data.
337  **/
338 guchar *
339 gdk_pixbuf_get_pixels (const GdkPixbuf *pixbuf)
340 {
341         g_return_val_if_fail (pixbuf != NULL, NULL);
342
343         return pixbuf->pixels;
344 }
345
346 /**
347  * gdk_pixbuf_get_width:
348  * @pixbuf: A pixbuf.
349  *
350  * Queries the width of a pixbuf.
351  *
352  * Return value: Width in pixels.
353  **/
354 int
355 gdk_pixbuf_get_width (const GdkPixbuf *pixbuf)
356 {
357         g_return_val_if_fail (pixbuf != NULL, -1);
358
359         return pixbuf->width;
360 }
361
362 /**
363  * gdk_pixbuf_get_height:
364  * @pixbuf: A pixbuf.
365  *
366  * Queries the height of a pixbuf.
367  *
368  * Return value: Height in pixels.
369  **/
370 int
371 gdk_pixbuf_get_height (const GdkPixbuf *pixbuf)
372 {
373         g_return_val_if_fail (pixbuf != NULL, -1);
374
375         return pixbuf->height;
376 }
377
378 /**
379  * gdk_pixbuf_get_rowstride:
380  * @pixbuf: A pixbuf.
381  *
382  * Queries the rowstride of a pixbuf, which is the number of bytes between rows.
383  *
384  * Return value: Number of bytes between rows.
385  **/
386 int
387 gdk_pixbuf_get_rowstride (const GdkPixbuf *pixbuf)
388 {
389         g_return_val_if_fail (pixbuf != NULL, -1);
390
391         return pixbuf->rowstride;
392 }
393
394 \f
395
396 /* General initialization hooks */
397 const guint gdk_pixbuf_major_version = GDK_PIXBUF_MAJOR;
398 const guint gdk_pixbuf_minor_version = GDK_PIXBUF_MINOR;
399 const guint gdk_pixbuf_micro_version = GDK_PIXBUF_MICRO;
400
401 const char *gdk_pixbuf_version = GDK_PIXBUF_VERSION;
402
403 /* Error quark */
404 GQuark
405 gdk_pixbuf_error_quark (void)
406 {
407   static GQuark q = 0;
408   if (q == 0)
409     q = g_quark_from_static_string ("gdk-pixbuf-error-quark");
410
411   return q;
412 }
413
414 /* Include the marshallers */
415 #include <glib-object.h>
416 #include "gdk-pixbuf-marshal.c"