]> Pileus Git - ~andy/gtk/blob - gdk-pixbuf/gdk-pixbuf-data.c
800d64d2a6930a9f2d928d43c0ba3f9c8861b37d
[~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 "gdk-pixbuf-alias.h"
27 #include <stdlib.h>
28 #include <string.h>
29
30 \f
31
32 /**
33  * gdk_pixbuf_new_from_data:
34  * @data: Image data in 8-bit/sample packed format
35  * @colorspace: Colorspace for the image data
36  * @has_alpha: Whether the data has an opacity channel
37  * @bits_per_sample: Number of bits per sample
38  * @width: Width of the image in pixels, must be > 0
39  * @height: Height of the image in pixels, must be > 0
40  * @rowstride: Distance in bytes between row starts
41  * @destroy_fn: Function used to free the data when the pixbuf's reference count
42  * drops to zero, or %NULL if the data should not be freed
43  * @destroy_fn_data: Closure data to pass to the destroy notification function
44  * 
45  * Creates a new #GdkPixbuf out of in-memory image data.  Currently only RGB
46  * images with 8 bits per sample are supported.
47  * 
48  * Return value: A newly-created #GdkPixbuf structure with a reference count of 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, 
66                                "colorspace", colorspace,
67                                "n-channels", has_alpha ? 4 : 3,
68                                "bits-per-sample", bits_per_sample,
69                                "has-alpha", has_alpha ? TRUE : FALSE,
70                                "width", width,
71                                "height", height,
72                                "rowstride", rowstride,
73                                "pixels", data,
74                                NULL);
75         
76         pixbuf->destroy_fn = destroy_fn;
77         pixbuf->destroy_fn_data = destroy_fn_data;
78
79         return pixbuf;
80 }
81
82 #define __GDK_PIXBUF_DATA_C__
83 #include "gdk-pixbuf-aliasdef.c"