forked from gsingh93/slim-display-manager
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
png.c
166 lines (135 loc) · 4.33 KB
/
png.c
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
161
162
163
164
165
166
/****************************************************************************
png.c - read and write png images using libpng routines.
Distributed with Xplanet.
Copyright (C) 2002 Hari Nair <hari@alumni.caltech.edu>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
****************************************************************************/
#include <stdio.h>
#include <stdlib.h>
#include "const.h"
#include <png.h>
#include <string.h>
#include <sys/socket.h>
#include <unistd.h>
int read_png(const char * filename, int * width, int * height,
unsigned char ** rgb, unsigned char ** alpha)
{
int ret = 0;
png_structp png_ptr;
png_infop info_ptr;
png_bytepp row_pointers;
unsigned char * ptr = NULL;
png_uint_32 w, h;
int bit_depth, color_type, interlace_type;
int i;
FILE * infile = fopen(filename, "rb");
if (infile == NULL) {
fprintf(stderr, "Can not fopen file: %s\n", filename);
return ret;
}
png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, (png_voidp)NULL,
(png_error_ptr)NULL, (png_error_ptr)NULL);
if (!png_ptr)
goto file_close;
info_ptr = png_create_info_struct(png_ptr);
if (!info_ptr) {
png_destroy_read_struct(&png_ptr, (png_infopp)NULL, (png_infopp)NULL);
}
#if PNG_LIBPNG_VER_MAJOR >= 1 && PNG_LIBPNG_VER_MINOR >= 4
if (setjmp(png_jmpbuf((png_ptr))))
#else
if (setjmp(png_ptr->jmpbuf))
#endif
goto png_destroy;
png_init_io(png_ptr, infile);
png_read_info(png_ptr, info_ptr);
png_get_IHDR(png_ptr, info_ptr, &w, &h, &bit_depth, &color_type,
&interlace_type, (int *)NULL, (int *)NULL);
/* Prevent against integer overflow */
if (w >= MAX_DIMENSION || h >= MAX_DIMENSION) {
fprintf(stderr, "Unreasonable dimension found in file: %s\n", filename);
goto png_destroy;
}
*width = (int)w;
*height = (int)h;
if (color_type == PNG_COLOR_TYPE_RGB_ALPHA ||
color_type == PNG_COLOR_TYPE_GRAY_ALPHA) {
alpha[0] = malloc(*width * *height);
if (alpha[0] == NULL) {
fprintf(stderr,
"Can't allocate memory for alpha channel in PNG file.\n");
goto png_destroy;
}
}
/* Change a paletted/grayscale image to RGB */
if (color_type == PNG_COLOR_TYPE_PALETTE && bit_depth <= 8)
png_set_expand(png_ptr);
/* Change a grayscale image to RGB */
if (color_type == PNG_COLOR_TYPE_GRAY ||
color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
png_set_gray_to_rgb(png_ptr);
/* If the PNG file has 16 bits per channel, strip them down to 8 */
if (bit_depth == 16)
png_set_strip_16(png_ptr);
/* use 1 byte per pixel */
png_set_packing(png_ptr);
row_pointers = malloc(*height * sizeof(png_bytep));
if (row_pointers == NULL) {
fprintf(stderr, "Can't allocate memory for PNG file.\n");
goto png_destroy;
}
for (i = 0; i < *height; i++) {
row_pointers[i] = malloc(4 * *width);
if (row_pointers == NULL) {
fprintf(stderr, "Can't allocate memory for PNG line.\n");
goto rows_free;
}
}
png_read_image(png_ptr, row_pointers);
rgb[0] = malloc(3 * *width * *height);
if (rgb[0] == NULL) {
fprintf(stderr, "Can't allocate memory for PNG file.\n");
goto rows_free;
}
if (alpha[0] == NULL) {
ptr = rgb[0];
for (i = 0; i < *height; i++) {
memcpy(ptr, row_pointers[i], 3 * *width);
ptr += 3 * *width;
}
} else {
int j;
ptr = rgb[0];
for (i = 0; i < *height; i++) {
int ipos = 0;
for (j = 0; j < *width; j++) {
*ptr++ = row_pointers[i][ipos++];
*ptr++ = row_pointers[i][ipos++];
*ptr++ = row_pointers[i][ipos++];
alpha[0][i * *width + j] = row_pointers[i][ipos++];
}
}
}
ret = 1; /* data reading is OK */
rows_free:
for (i = 0; i < *height; i++) {
if (row_pointers[i] != NULL)
free(row_pointers[i]);
}
free(row_pointers);
png_destroy:
png_destroy_read_struct(&png_ptr, &info_ptr, (png_infopp)NULL);
file_close:
fclose(infile);
return ret;
}