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 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321
|
/* Copyright (C) 2001-2024 Artifex Software, Inc.
All Rights Reserved.
This software is provided AS-IS with no warranty, either express or
implied.
This software is distributed under license and may not be copied,
modified or distributed except as expressly authorized under the terms
of the license contained in the file LICENSE in this distribution.
Refer to licensing information at http://www.artifex.com or contact
Artifex Software, Inc., 39 Mesa Street, Suite 108A, San Francisco,
CA 94129, USA, for further information.
*/
/* XPS interpreter - JPEG image support */
#include "ghostxps.h"
#include "stream.h"
#include "strimpl.h"
#include "gsstate.h"
#include "jpeglib_.h"
#include "sdct.h"
#include "sjpeg.h"
static int
xps_report_error(stream_state * st, const char *str)
{
(void) gs_throw1(-1, "%s", str);
return 0;
}
/* These four routines, extract_exif_resolution and extract_app13_resolution,
float_can_be_int and read_value are borrowed from MuPDF, see load_jpeg.c in the MuPDF tree.
float_can_be_int and read_value are utility functions used by the other two.
*/
/* Returns true if <x> can be represented as an integer without overflow.
*
* We can't use comparisons such as 'return x < INT_MAX' because INT_MAX is
* not safely convertible to float - it ends up as INT_MAX+1 so the comparison
* doesn't do what we want.
*
* Instead we do a round-trip conversion and return true if this differs by
* less than 1. This relies on high adjacent float values that differ by more
* than 1, actually being exact integers, so the round-trip doesn't change the
* value.
*/
static int float_can_be_int(float x)
{
return fabsf(x - (float)(int) x) < 1;
}
static inline int read_value(const unsigned char *data, int bytes, int is_big_endian)
{
int value = 0;
if (!is_big_endian)
data += bytes;
for (; bytes > 0; bytes--)
value = (value << 8) | (is_big_endian ? *data++ : *--data);
return value;
}
static int extract_exif_resolution(jpeg_saved_marker_ptr marker,
int *xres, int *yres, uint8_t *orientation)
{
int is_big_endian;
const unsigned char *data;
unsigned int offset, ifd_len, res_type = 0;
float x_res = 0, y_res = 0;
if (!marker || marker->marker != JPEG_APP0 + 1 || marker->data_length < 14)
return 0;
data = (const unsigned char *)marker->data;
if (read_value(data, 4, 1) != 0x45786966 /* Exif */ || read_value(data + 4, 2, 1) != 0x0000)
return 0;
if (read_value(data + 6, 4, 1) == 0x49492A00)
is_big_endian = 0;
else if (read_value(data + 6, 4, 1) == 0x4D4D002A)
is_big_endian = 1;
else
return 0;
offset = read_value(data + 10, 4, is_big_endian) + 6;
if (offset < 14 || offset > marker->data_length - 2)
return 0;
ifd_len = read_value(data + offset, 2, is_big_endian);
for (offset += 2; ifd_len > 0 && offset + 12 < marker->data_length; ifd_len--, offset += 12)
{
int tag = read_value(data + offset, 2, is_big_endian);
int type = read_value(data + offset + 2, 2, is_big_endian);
int count = read_value(data + offset + 4, 4, is_big_endian);
unsigned int value_off = read_value(data + offset + 8, 4, is_big_endian) + 6;
switch (tag)
{
case 0x112:
/* Orientation: we don't use this */
break;
case 0x11A:
if (type == 5 && value_off > offset && value_off <= marker->data_length - 8)
x_res = 1.0f * read_value(data + value_off, 4, is_big_endian) / read_value(data + value_off + 4, 4, is_big_endian);
break;
case 0x11B:
if (type == 5 && value_off > offset && value_off <= marker->data_length - 8)
y_res = 1.0f * read_value(data + value_off, 4, is_big_endian) / read_value(data + value_off + 4, 4, is_big_endian);
break;
case 0x128:
if (type == 3 && count == 1)
res_type = read_value(data + offset + 8, 2, is_big_endian);
break;
}
}
if (x_res <= 0 || !float_can_be_int(x_res) || y_res <= 0 || !float_can_be_int(y_res))
return 0;
if (res_type == 2)
{
*xres = (int)x_res;
*yres = (int)y_res;
}
else if (res_type == 3)
{
*xres = (int)(x_res * 254 / 100);
*yres = (int)(y_res * 254 / 100);
}
else
{
*xres = 0;
*yres = 0;
}
return 1;
}
static int extract_app13_resolution(jpeg_saved_marker_ptr marker, int *xres, int *yres)
{
const unsigned char *data, *data_end;
if (!marker || marker->marker != JPEG_APP0 + 13 || marker->data_length < 42 ||
strcmp((const char *)marker->data, "Photoshop 3.0") != 0)
{
return 0;
}
data = (const unsigned char *)marker->data;
data_end = data + marker->data_length;
for (data += 14; data + 12 < data_end; ) {
int data_size = -1;
int tag = read_value(data + 4, 2, 1);
int value_off = 11 + read_value(data + 6, 2, 1);
if (value_off % 2 == 1)
value_off++;
if (read_value(data, 4, 1) == 0x3842494D /* 8BIM */ && value_off <= data_end - data)
data_size = read_value(data + value_off - 4, 4, 1);
if (data_size < 0 || data_size > data_end - data - value_off)
return 0;
if (tag == 0x3ED && data_size == 16)
{
*xres = read_value(data + value_off, 2, 1);
*yres = read_value(data + value_off + 8, 2, 1);
return 1;
}
if (data_size % 2 == 1)
data_size++;
data += value_off + data_size;
}
return 0;
}
int
xps_decode_jpeg(xps_context_t *ctx, byte *rbuf, int rlen, xps_image_t *image)
{
jpeg_decompress_data jddp;
stream_DCT_state state;
stream_cursor_read rp;
stream_cursor_write wp;
int code;
int wlen;
byte *wbuf;
jpeg_saved_marker_ptr curr_marker;
s_init_state((stream_state*)&state, &s_DCTD_template, ctx->memory);
state.report_error = xps_report_error;
s_DCTD_template.set_defaults((stream_state*)&state);
state.jpeg_memory = ctx->memory;
state.data.decompress = &jddp;
jddp.templat = s_DCTD_template;
jddp.memory = ctx->memory;
jddp.scanline_buffer = NULL;
jddp.PassThrough = 0;
jddp.device = (void *)NULL;
jddp.PassThroughfn = 0;
if ((code = gs_jpeg_create_decompress(&state)) < 0)
return gs_throw(-1, "cannot gs_jpeg_create_decompress");
s_DCTD_template.init((stream_state*)&state);
rp.ptr = rbuf - 1;
rp.limit = rbuf + rlen - 1;
/* read the header only by not having a write buffer */
wp.ptr = 0;
wp.limit = 0;
/* Set up to save the ICC marker APP2.
* According to the spec we should be getting APP1 APP2 and APP13.
* Library gets APP0 and APP14. */
jpeg_save_markers(&(jddp.dinfo), JPEG_APP0+1, 0xffff);
jpeg_save_markers(&(jddp.dinfo), JPEG_APP0+13, 0xffff);
jpeg_save_markers(&(jddp.dinfo), JPEG_APP0+2, 0xffff);
code = s_DCTD_template.process((stream_state*)&state, &rp, &wp, true);
if (code != 1) {
code = gs_throw(-1, "premature EOF or error in jpeg");
goto error;
}
/* Check if we had an ICC profile */
curr_marker = jddp.dinfo.marker_list;
while (curr_marker != NULL)
{
if (curr_marker->marker == 0xe2)
{
/* Found ICC profile. Create a buffer and copy over now.
* Strip JPEG APP2 14 byte header */
image->profilesize = curr_marker->data_length - 14;
image->profile = xps_alloc(ctx, image->profilesize);
if (image->profile)
{
/* If we can't create it, just ignore */
memcpy(image->profile, &(curr_marker->data[14]), image->profilesize);
}
break;
}
curr_marker = curr_marker->next;
}
image->width = jddp.dinfo.output_width;
image->height = jddp.dinfo.output_height;
image->comps = jddp.dinfo.output_components;
image->bits = 8;
image->stride = image->width * image->comps;
image->invert_decode = false;
if (image->comps == 1) {
rc_increment(ctx->gray);
image->colorspace = ctx->gray;
}
if (image->comps == 3) {
rc_increment(ctx->srgb);
image->colorspace = ctx->srgb;
}
if (image->comps == 4) {
rc_increment(ctx->cmyk);
image->colorspace = ctx->cmyk;
image->invert_decode = true;
}
if (extract_exif_resolution(jddp.dinfo.marker_list, &image->xres, &image->yres, NULL))
/* XPS prefers EXIF resolution to JFIF density */;
else if (extract_app13_resolution(jddp.dinfo.marker_list, &image->xres, &image->yres))
/* XPS prefers APP13 resolution to JFIF density */;
else if (jddp.dinfo.density_unit == 1)
{
/* According to the XPS specification we should also use the EXIF and APP13 marker segments
* to set the resolution, but we don't and adding that would be more effort than we want to
* go to for XPS currently. This at least means that images won't go completely AWOL.
*/
if (jddp.dinfo.X_density != 0)
image->xres = jddp.dinfo.X_density;
else
image->xres = 96;
if (jddp.dinfo.Y_density != 0)
image->yres = jddp.dinfo.Y_density;
else
image->yres = 96;
}
else if (jddp.dinfo.density_unit == 2)
{
image->xres = (int)(jddp.dinfo.X_density * 2.54 + 0.5);
image->yres = (int)(jddp.dinfo.Y_density * 2.54 + 0.5);
}
else
{
image->xres = 96;
image->yres = 96;
}
wlen = image->stride * image->height;
wbuf = xps_alloc(ctx, wlen);
if (!wbuf) {
code = gs_throw1(gs_error_VMerror, "out of memory allocating samples: %d", wlen);
goto error;
}
image->samples = wbuf;
wp.ptr = wbuf - 1;
wp.limit = wbuf + wlen - 1;
code = s_DCTD_template.process((stream_state*)&state, &rp, &wp, true);
if (code != EOFC) {
code = gs_throw1(-1, "error in jpeg (code = %d)", code);
goto error;
}
code = gs_okay;
error:
gs_jpeg_destroy(&state);
if (jddp.scanline_buffer != NULL) {
gs_free_object(gs_memory_stable(ctx->memory),
jddp.scanline_buffer,
"xps_decode_jpeg");
}
return code;
}
|