summaryrefslogtreecommitdiff
path: root/xps/xpspng.c
blob: 526a5098d22048f3db9dd15e9fb966a808854596 (plain)
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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
#include "fitz.h"
#include "muxps.h"

#include <png.h>

/*
 * PNG using libpng directly (no gs wrappers)
 */

struct xps_png_io_s
{
	byte *ptr;
	byte *lim;
};

static void
xps_png_read(png_structp png, png_bytep data, png_size_t length)
{
	struct xps_png_io_s *io = png_get_io_ptr(png);
	if (io->ptr + length > io->lim)
		png_error(png, "Read Error");
	memcpy(data, io->ptr, length);
	io->ptr += length;
}

static png_voidp
xps_png_malloc(png_structp png, png_size_t size)
{
	return fz_malloc(size);
}

static void
xps_png_free(png_structp png, png_voidp ptr)
{
	fz_free(ptr);
}

/* This only determines if we have an alpha value */
int
xps_png_has_alpha(xps_context *ctx, byte *rbuf, int rlen)
{
	png_structp png;
	png_infop info;
	struct xps_png_io_s io;
	int has_alpha;

	/*
	 * Set up PNG structs and input source
	 */

	io.ptr = rbuf;
	io.lim = rbuf + rlen;

	png = png_create_read_struct_2(PNG_LIBPNG_VER_STRING,
			NULL, NULL, NULL,
			ctx, xps_png_malloc, xps_png_free);
	if (!png) {
		fz_warn("png_create_read_struct");
		return 0;
	}

	info = png_create_info_struct(png);
	if (!info) {
		fz_warn("png_create_info_struct");
		return 0;
	}

	png_set_read_fn(png, &io, xps_png_read);
	png_set_crc_action(png, PNG_CRC_WARN_USE, PNG_CRC_WARN_USE);

	/*
	 * Jump to here on errors.
	 */

	if (setjmp(png_jmpbuf(png)))
	{
		png_destroy_read_struct(&png, &info, NULL);
		fz_warn("png reading failed");
		return 0;
	}

	/*
	 * Read PNG header
	 */

	png_read_info(png, info);

	switch (png_get_color_type(png, info))
	{
	case PNG_COLOR_TYPE_PALETTE:
	case PNG_COLOR_TYPE_GRAY:
	case PNG_COLOR_TYPE_RGB:
		has_alpha = 0;
		break;

	case PNG_COLOR_TYPE_GRAY_ALPHA:
	case PNG_COLOR_TYPE_RGB_ALPHA:
		has_alpha = 1;
		break;

	default:
		fz_warn("cannot handle this png color type");
		has_alpha = 0;
		break;
	}

	/*
	 * Clean up memory.
	 */

	png_destroy_read_struct(&png, &info, NULL);

	return has_alpha;
}

int
xps_decode_png(xps_context *ctx, byte *rbuf, int rlen, xps_image *image)
{
	png_structp png;
	png_infop info;
	struct xps_png_io_s io;
	int npasses;
	int pass;
	int y;

	/*
	 * Set up PNG structs and input source
	 */

	io.ptr = rbuf;
	io.lim = rbuf + rlen;

	png = png_create_read_struct_2(PNG_LIBPNG_VER_STRING,
			NULL, NULL, NULL,
			ctx, xps_png_malloc, xps_png_free);
	if (!png)
		return fz_throw("png_create_read_struct");

	info = png_create_info_struct(png);
	if (!info)
		return fz_throw("png_create_info_struct");

	png_set_read_fn(png, &io, xps_png_read);
	png_set_crc_action(png, PNG_CRC_WARN_USE, PNG_CRC_WARN_USE);

	/*
	 * Jump to here on errors.
	 */

	if (setjmp(png_jmpbuf(png)))
	{
		png_destroy_read_struct(&png, &info, NULL);
		return fz_throw("png reading failed");
	}

	/*
	 * Read PNG header
	 */

	png_read_info(png, info);

	if (png_get_interlace_type(png, info) == PNG_INTERLACE_ADAM7)
	{
		npasses = png_set_interlace_handling(png);
	}
	else
	{
		npasses = 1;
	}

	if (png_get_color_type(png, info) == PNG_COLOR_TYPE_PALETTE)
	{
		png_set_palette_to_rgb(png);
	}

	if (png_get_valid(png, info, PNG_INFO_tRNS))
	{
		/* this will also expand the depth to 8-bits */
		png_set_tRNS_to_alpha(png);
	}

	png_read_update_info(png, info);

	image->width = png_get_image_width(png, info);
	image->height = png_get_image_height(png, info);
	image->comps = png_get_channels(png, info);
	image->bits = png_get_bit_depth(png, info);

	/* See if we have an icc profile */
	if (info->iccp_profile != NULL)
	{
		image->profilesize = info->iccp_proflen;
		image->profile = fz_malloc(info->iccp_proflen);
		if (image->profile)
		{
			/* If we can't create it, just ignore */
			memcpy(image->profile, info->iccp_profile, info->iccp_proflen);
		}
	}

	switch (png_get_color_type(png, info))
	{
	case PNG_COLOR_TYPE_GRAY:
		image->colorspace = fz_devicegray;
		image->hasalpha = 0;
		break;

	case PNG_COLOR_TYPE_RGB:
		image->colorspace = fz_devicergb;
		image->hasalpha = 0;
		break;

	case PNG_COLOR_TYPE_GRAY_ALPHA:
		image->colorspace = fz_devicegray;
		image->hasalpha = 1;
		break;

	case PNG_COLOR_TYPE_RGB_ALPHA:
		image->colorspace = fz_devicergb;
		image->hasalpha = 1;
		break;

	default:
		return fz_throw("cannot handle this png color type");
	}

	/*
	 * Extract DPI, default to 96 dpi
	 */

	image->xres = 96;
	image->yres = 96;

	if (info->valid & PNG_INFO_pHYs)
	{
		png_uint_32 xres, yres;
		int unit;
		png_get_pHYs(png, info, &xres, &yres, &unit);
		if (unit == PNG_RESOLUTION_METER)
		{
			image->xres = xres * 0.0254 + 0.5;
			image->yres = yres * 0.0254 + 0.5;
		}
	}

	/*
	 * Read rows, filling transformed output into image buffer.
	 */

	image->stride = (image->width * image->comps * image->bits + 7) / 8;

	image->samples = fz_malloc(image->stride * image->height);

	for (pass = 0; pass < npasses; pass++)
	{
		for (y = 0; y < image->height; y++)
		{
			png_read_row(png, image->samples + (y * image->stride), NULL);
		}
	}

	/*
	 * Clean up memory.
	 */

	png_destroy_read_struct(&png, &info, NULL);

	return fz_okay;
}