1 /* png.c - load PNG image from file
3 * Raster graphics library
5 * Copyright (c) 1997 Alfredo K. Kojima
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library 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.
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 * Library General Public License for more details.
17 * You should have received a copy of the GNU Library General Public
18 * License along with this library; if not, write to the Free
19 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 /* AIX requires this to be the first thing in the file. */
26 # define alloca __builtin_alloca
34 # ifndef alloca /* predefined by HP cc +Olibcalls */
54 RLoadPNG(RContext
*context
, char *file
, int index
)
60 png_infop pinfo
, einfo
;
61 png_color_16p bkcolor
;
65 png_uint_32 width
, height
;
66 int depth
, junk
, color_type
;
68 unsigned char *r
, *g
, *b
, *a
;
72 RErrorCode
= RERR_OPEN
;
75 png
= png_create_read_struct(PNG_LIBPNG_VER_STRING
, NULL
,
76 (png_error_ptr
)NULL
, (png_error_ptr
)NULL
);
78 RErrorCode
= RERR_NOMEMORY
;
83 pinfo
= png_create_info_struct(png
);
85 RErrorCode
= RERR_NOMEMORY
;
87 png_destroy_read_struct(&png
, NULL
, NULL
);
91 einfo
= png_create_info_struct(png
);
93 RErrorCode
= RERR_NOMEMORY
;
95 png_destroy_read_struct(&png
, &pinfo
, NULL
);
99 RErrorCode
= RERR_INTERNAL
;
100 if (setjmp(png
->jmpbuf
)) {
102 png_destroy_read_struct(&png
, &pinfo
, &einfo
);
104 RDestroyImage(image
);
110 png_read_info(png
, pinfo
);
112 png_get_IHDR(png
, pinfo
, &width
, &height
, &depth
, &color_type
,
113 &junk
, &junk
, &junk
);
116 /* check for an alpha channel */
117 if (png_get_valid(png
, pinfo
, PNG_INFO_tRNS
))
120 alpha
= (color_type
& PNG_COLOR_MASK_ALPHA
);
122 /* allocate RImage */
123 image
= RCreateImage(width
, height
, alpha
);
126 png_destroy_read_struct(&png
, &pinfo
, &einfo
);
130 /* normalize to 8bpp with alpha channel */
131 if (color_type
== PNG_COLOR_TYPE_PALETTE
&& depth
< 8)
134 if (color_type
== PNG_COLOR_TYPE_GRAY
&& depth
< 8)
137 if (png_get_valid(png
, pinfo
, PNG_INFO_tRNS
))
141 png_set_strip_16(png
);
143 if (color_type
== PNG_COLOR_TYPE_GRAY
||
144 color_type
== PNG_COLOR_TYPE_GRAY_ALPHA
)
145 png_set_gray_to_rgb(png
);
147 /* set gamma correction */
148 if ((context
->attribs
->flags
& RC_GammaCorrection
)
149 && context
->depth
!= 8) {
150 sgamma
= (context
->attribs
->rgamma
+ context
->attribs
->ggamma
+
151 context
->attribs
->bgamma
) / 3;
152 } else if ((tmp
= getenv("DISPLAY_GAMMA")) != NULL
) {
157 /* no, this is correct. Old gimp versions are broken and save wrong
158 * data. Upgrade gimp */
162 if (png_get_gAMA(png
, pinfo
, &gamma
))
163 png_set_gamma(png
, sgamma
, gamma
);
165 png_set_gamma(png
, sgamma
, 0.45);
167 /* do the transforms */
168 png_read_update_info(png
, pinfo
);
170 /* set background color */
171 if (png_get_bKGD(png
, pinfo
, &bkcolor
)) {
172 image
->background
.red
= bkcolor
->red
>> 8;
173 image
->background
.green
= bkcolor
->green
>> 8;
174 image
->background
.blue
= bkcolor
->blue
>> 8;
177 png_rows
= alloca(sizeof(char*)*height
);
179 RErrorCode
= RERR_NOMEMORY
;
181 RDestroyImage(image
);
182 png_destroy_read_struct(&png
, &pinfo
, &einfo
);
188 for (y
=0; y
<height
; y
++) {
189 png_rows
[y
] = alloca(png_get_rowbytes(png
, pinfo
));
191 RErrorCode
= RERR_NOMEMORY
;
193 RDestroyImage(image
);
194 png_destroy_read_struct(&png
, &pinfo
, &einfo
);
202 png_read_image(png
, png_rows
);
204 png_read_end(png
, einfo
);
206 png_destroy_read_struct(&png
, &pinfo
, &einfo
);
215 /* convert to RImage */
217 for (y
=0; y
<height
; y
++) {
218 for (x
=0, i
=0; x
<width
; x
++) {
219 *(r
++) = *(png_rows
[y
]+i
++);
220 *(g
++) = *(png_rows
[y
]+i
++);
221 *(b
++) = *(png_rows
[y
]+i
++);
222 *(a
++) = *(png_rows
[y
]+i
++);
226 for (y
=0; y
<height
; y
++) {
227 for (x
=0, i
=0; x
<width
; x
++) {
228 *(r
++) = *(png_rows
[y
]+i
++);
229 *(g
++) = *(png_rows
[y
]+i
++);
230 *(b
++) = *(png_rows
[y
]+i
++);