]> Pileus Git - ~andy/gtk/blob - gdk-pixbuf/gdk-pixbuf-data.c
Use g_printf instead of system printf. (#99327)
[~andy/gtk] / gdk-pixbuf / gdk-pixbuf-data.c
1 /* GdkPixbuf library - Image creation from in-memory buffers
2  *
3  * Copyright (C) 1999 The Free Software Foundation
4  *
5  * Author: Federico Mena-Quintero <federico@gimp.org>
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 #include <config.h>
24 #include "gdk-pixbuf.h"
25 #include "gdk-pixbuf-private.h"
26 #include <stdlib.h>
27 #include <string.h>
28
29 \f
30
31 /**
32  * gdk_pixbuf_new_from_data:
33  * @data: Image data in 8-bit/sample packed format.
34  * @colorspace: Colorspace for the image data.
35  * @has_alpha: Whether the data has an opacity channel.
36  * @bits_per_sample: Number of bits per sample.
37  * @width: Width of the image in pixels.
38  * @height: Height of the image in pixels.
39  * @rowstride: Distance in bytes between rows.
40  * @destroy_fn: Function used to free the data when the pixbuf's reference count
41  * drops to zero, or %NULL if the data should not be freed.
42  * @destroy_fn_data: Closure data to pass to the destroy notification function.
43  * 
44  * Creates a new #GdkPixbuf out of in-memory image data.  Currently only RGB
45  * images with 8 bits per sample are supported.
46  * 
47  * Return value: A newly-created #GdkPixbuf structure with a reference count of
48  * 1.
49  **/
50 GdkPixbuf *
51 gdk_pixbuf_new_from_data (const guchar *data, GdkColorspace colorspace, gboolean has_alpha,
52                           int bits_per_sample, int width, int height, int rowstride,
53           GdkPixbufDestroyNotify destroy_fn, gpointer destroy_fn_data)
54 {
55         GdkPixbuf *pixbuf;
56
57         /* Only 8-bit/sample RGB buffers are supported for now */
58
59         g_return_val_if_fail (data != NULL, NULL);
60         g_return_val_if_fail (colorspace == GDK_COLORSPACE_RGB, NULL);
61         g_return_val_if_fail (bits_per_sample == 8, NULL);
62         g_return_val_if_fail (width > 0, NULL);
63         g_return_val_if_fail (height > 0, NULL);
64
65         pixbuf = g_object_new (GDK_TYPE_PIXBUF, NULL);
66         
67         pixbuf->colorspace = colorspace;
68         pixbuf->n_channels = has_alpha ? 4 : 3;
69         pixbuf->bits_per_sample = bits_per_sample;
70         pixbuf->has_alpha = has_alpha ? TRUE : FALSE;
71         pixbuf->width = width;
72         pixbuf->height = height;
73         pixbuf->rowstride = rowstride;
74         pixbuf->pixels = (guchar *) data;
75         pixbuf->destroy_fn = destroy_fn;
76         pixbuf->destroy_fn_data = destroy_fn_data;
77
78         return pixbuf;
79 }