gd_jpeg.c 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850
  1. /*
  2. * gd_jpeg.c: Read and write JPEG (JFIF) format image files using the
  3. * gd graphics library (http://www.boutell.com/gd/).
  4. *
  5. * This software is based in part on the work of the Independent JPEG
  6. * Group. For more information on the IJG JPEG software (and JPEG
  7. * documentation, etc.), see ftp://ftp.uu.net/graphics/jpeg/.
  8. *
  9. * NOTE: IJG 12-bit JSAMPLE (BITS_IN_JSAMPLE == 12) mode is not
  10. * supported at all on read in gd 2.0, and is not supported on write
  11. * except for palette images, which is sort of pointless (TBB). Even that
  12. * has never been tested according to DB.
  13. *
  14. * Copyright 2000 Doug Becker, mailto:thebeckers@home.com
  15. *
  16. * Modification 4/18/00 TBB: JPEG_DEBUG rather than just DEBUG,
  17. * so VC++ builds don't spew to standard output, causing
  18. * major CGI brain damage
  19. *
  20. * 2.0.10: more efficient gdImageCreateFromJpegCtx, thanks to
  21. * Christian Aberger
  22. */
  23. #include <stdio.h>
  24. #include <stdlib.h>
  25. #include <setjmp.h>
  26. #include <limits.h>
  27. #include <string.h>
  28. #include "gd.h"
  29. /* TBB: move this up so include files are not brought in */
  30. /* JCE: arrange HAVE_LIBJPEG so that it can be set in gd.h */
  31. #ifdef HAVE_LIBJPEG
  32. #include "gdhelpers.h"
  33. #undef HAVE_STDLIB_H
  34. /* 1.8.1: remove dependency on jinclude.h */
  35. #include "jpeglib.h"
  36. #include "jerror.h"
  37. static const char *const GD_JPEG_VERSION = "1.0";
  38. typedef struct _jmpbuf_wrapper
  39. {
  40. jmp_buf jmpbuf;
  41. int ignore_warning;
  42. } jmpbuf_wrapper;
  43. static long php_jpeg_emit_message(j_common_ptr jpeg_info, int level)
  44. {
  45. char message[JMSG_LENGTH_MAX];
  46. jmpbuf_wrapper *jmpbufw;
  47. int ignore_warning = 0;
  48. jmpbufw = (jmpbuf_wrapper *) jpeg_info->client_data;
  49. if (jmpbufw != 0) {
  50. ignore_warning = jmpbufw->ignore_warning;
  51. }
  52. (jpeg_info->err->format_message)(jpeg_info,message);
  53. /* It is a warning message */
  54. if (level < 0) {
  55. /* display only the 1st warning, as would do a default libjpeg
  56. * unless strace_level >= 3
  57. */
  58. if ((jpeg_info->err->num_warnings == 0) || (jpeg_info->err->trace_level >= 3)) {
  59. php_gd_error_ex(ignore_warning ? E_NOTICE : E_WARNING, "gd-jpeg, libjpeg: recoverable error: %s\n", message);
  60. }
  61. jpeg_info->err->num_warnings++;
  62. } else {
  63. /* strace msg, Show it if trace_level >= level. */
  64. if (jpeg_info->err->trace_level >= level) {
  65. php_gd_error_ex(E_NOTICE, "gd-jpeg, libjpeg: strace message: %s\n", message);
  66. }
  67. }
  68. return 1;
  69. }
  70. /* Called by the IJG JPEG library upon encountering a fatal error */
  71. static void fatal_jpeg_error (j_common_ptr cinfo)
  72. {
  73. jmpbuf_wrapper *jmpbufw;
  74. php_gd_error("gd-jpeg: JPEG library reports unrecoverable error: ");
  75. (*cinfo->err->output_message) (cinfo);
  76. jmpbufw = (jmpbuf_wrapper *) cinfo->client_data;
  77. jpeg_destroy (cinfo);
  78. if (jmpbufw != 0) {
  79. longjmp (jmpbufw->jmpbuf, 1);
  80. php_gd_error_ex(E_ERROR, "gd-jpeg: EXTREMELY fatal error: longjmp returned control; terminating");
  81. } else {
  82. php_gd_error_ex(E_ERROR, "gd-jpeg: EXTREMELY fatal error: jmpbuf unrecoverable; terminating");
  83. }
  84. exit (99);
  85. }
  86. int gdJpegGetVersionInt()
  87. {
  88. return JPEG_LIB_VERSION;
  89. }
  90. const char * gdJpegGetVersionString()
  91. {
  92. switch(JPEG_LIB_VERSION) {
  93. case 62:
  94. return "6b";
  95. break;
  96. case 70:
  97. return "7";
  98. break;
  99. case 80:
  100. return "8";
  101. break;
  102. case 90:
  103. return "9 compatible";
  104. break;
  105. default:
  106. return "unknown";
  107. }
  108. }
  109. /*
  110. * Write IM to OUTFILE as a JFIF-formatted JPEG image, using quality
  111. * QUALITY. If QUALITY is in the range 0-100, increasing values
  112. * represent higher quality but also larger image size. If QUALITY is
  113. * negative, the IJG JPEG library's default quality is used (which
  114. * should be near optimal for many applications). See the IJG JPEG
  115. * library documentation for more details.
  116. */
  117. void gdImageJpeg (gdImagePtr im, FILE * outFile, int quality)
  118. {
  119. gdIOCtx *out = gdNewFileCtx (outFile);
  120. gdImageJpegCtx (im, out, quality);
  121. out->gd_free (out);
  122. }
  123. void *gdImageJpegPtr (gdImagePtr im, int *size, int quality)
  124. {
  125. void *rv;
  126. gdIOCtx *out = gdNewDynamicCtx (2048, NULL);
  127. gdImageJpegCtx (im, out, quality);
  128. rv = gdDPExtractData (out, size);
  129. out->gd_free (out);
  130. return rv;
  131. }
  132. void jpeg_gdIOCtx_dest (j_compress_ptr cinfo, gdIOCtx * outfile);
  133. void gdImageJpegCtx (gdImagePtr im, gdIOCtx * outfile, int quality)
  134. {
  135. struct jpeg_compress_struct cinfo;
  136. struct jpeg_error_mgr jerr;
  137. int i, j, jidx;
  138. /* volatile so we can gdFree it on return from longjmp */
  139. volatile JSAMPROW row = 0;
  140. JSAMPROW rowptr[1];
  141. jmpbuf_wrapper jmpbufw;
  142. JDIMENSION nlines;
  143. char comment[255];
  144. memset (&cinfo, 0, sizeof (cinfo));
  145. memset (&jerr, 0, sizeof (jerr));
  146. cinfo.err = jpeg_std_error (&jerr);
  147. cinfo.client_data = &jmpbufw;
  148. if (setjmp (jmpbufw.jmpbuf) != 0) {
  149. /* we're here courtesy of longjmp */
  150. if (row) {
  151. gdFree (row);
  152. }
  153. return;
  154. }
  155. cinfo.err->error_exit = fatal_jpeg_error;
  156. jpeg_create_compress (&cinfo);
  157. cinfo.image_width = im->sx;
  158. cinfo.image_height = im->sy;
  159. cinfo.input_components = 3; /* # of color components per pixel */
  160. cinfo.in_color_space = JCS_RGB; /* colorspace of input image */
  161. jpeg_set_defaults (&cinfo);
  162. if (quality >= 0) {
  163. jpeg_set_quality (&cinfo, quality, TRUE);
  164. }
  165. /* If user requests interlace, translate that to progressive JPEG */
  166. if (gdImageGetInterlaced (im)) {
  167. jpeg_simple_progression (&cinfo);
  168. }
  169. jpeg_gdIOCtx_dest (&cinfo, outfile);
  170. row = (JSAMPROW) safe_emalloc(cinfo.image_width * cinfo.input_components, sizeof(JSAMPLE), 0);
  171. memset(row, 0, cinfo.image_width * cinfo.input_components * sizeof(JSAMPLE));
  172. rowptr[0] = row;
  173. jpeg_start_compress (&cinfo, TRUE);
  174. if (quality >= 0) {
  175. snprintf(comment, sizeof(comment)-1, "CREATOR: gd-jpeg v%s (using IJG JPEG v%d), quality = %d\n", GD_JPEG_VERSION, JPEG_LIB_VERSION, quality);
  176. } else {
  177. snprintf(comment, sizeof(comment)-1, "CREATOR: gd-jpeg v%s (using IJG JPEG v%d), default quality\n", GD_JPEG_VERSION, JPEG_LIB_VERSION);
  178. }
  179. jpeg_write_marker (&cinfo, JPEG_COM, (unsigned char *) comment, (unsigned int) strlen (comment));
  180. if (im->trueColor) {
  181. #if BITS_IN_JSAMPLE == 12
  182. php_gd_error("gd-jpeg: error: jpeg library was compiled for 12-bit precision. This is mostly useless, because JPEGs on the web are 8-bit and such versions of the jpeg library won't read or write them. GD doesn't support these unusual images. Edit your jmorecfg.h file to specify the correct precision and completely 'make clean' and 'make install' libjpeg again. Sorry");
  183. goto error;
  184. #endif /* BITS_IN_JSAMPLE == 12 */
  185. for (i = 0; i < im->sy; i++) {
  186. for (jidx = 0, j = 0; j < im->sx; j++) {
  187. int val = im->tpixels[i][j];
  188. row[jidx++] = gdTrueColorGetRed (val);
  189. row[jidx++] = gdTrueColorGetGreen (val);
  190. row[jidx++] = gdTrueColorGetBlue (val);
  191. }
  192. nlines = jpeg_write_scanlines (&cinfo, rowptr, 1);
  193. if (nlines != 1) {
  194. php_gd_error_ex(E_WARNING, "gd_jpeg: warning: jpeg_write_scanlines returns %u -- expected 1", nlines);
  195. }
  196. }
  197. } else {
  198. for (i = 0; i < im->sy; i++) {
  199. for (jidx = 0, j = 0; j < im->sx; j++) {
  200. int idx = im->pixels[i][j];
  201. /* NB: Although gd RGB values are ints, their max value is
  202. * 255 (see the documentation for gdImageColorAllocate())
  203. * -- perfect for 8-bit JPEG encoding (which is the norm)
  204. */
  205. #if BITS_IN_JSAMPLE == 8
  206. row[jidx++] = im->red[idx];
  207. row[jidx++] = im->green[idx];
  208. row[jidx++] = im->blue[idx];
  209. #elif BITS_IN_JSAMPLE == 12
  210. row[jidx++] = im->red[idx] << 4;
  211. row[jidx++] = im->green[idx] << 4;
  212. row[jidx++] = im->blue[idx] << 4;
  213. #else
  214. #error IJG JPEG library BITS_IN_JSAMPLE value must be 8 or 12
  215. #endif
  216. }
  217. nlines = jpeg_write_scanlines (&cinfo, rowptr, 1);
  218. if (nlines != 1) {
  219. php_gd_error_ex(E_WARNING, "gd_jpeg: warning: jpeg_write_scanlines returns %u -- expected 1", nlines);
  220. }
  221. }
  222. }
  223. jpeg_finish_compress (&cinfo);
  224. jpeg_destroy_compress (&cinfo);
  225. gdFree (row);
  226. }
  227. gdImagePtr gdImageCreateFromJpeg (FILE * inFile)
  228. {
  229. return gdImageCreateFromJpegEx(inFile, 1);
  230. }
  231. gdImagePtr gdImageCreateFromJpegEx (FILE * inFile, int ignore_warning)
  232. {
  233. gdImagePtr im;
  234. gdIOCtx *in = gdNewFileCtx(inFile);
  235. im = gdImageCreateFromJpegCtxEx(in, ignore_warning);
  236. in->gd_free (in);
  237. return im;
  238. }
  239. gdImagePtr gdImageCreateFromJpegPtr (int size, void *data)
  240. {
  241. return gdImageCreateFromJpegPtrEx(size, data, 1);
  242. }
  243. gdImagePtr gdImageCreateFromJpegPtrEx (int size, void *data, int ignore_warning)
  244. {
  245. gdImagePtr im;
  246. gdIOCtx *in = gdNewDynamicCtxEx(size, data, 0);
  247. im = gdImageCreateFromJpegCtxEx(in, ignore_warning);
  248. in->gd_free(in);
  249. return im;
  250. }
  251. void jpeg_gdIOCtx_src (j_decompress_ptr cinfo, gdIOCtx * infile);
  252. static int CMYKToRGB(int c, int m, int y, int k, int inverted);
  253. /*
  254. * Create a gd-format image from the JPEG-format INFILE. Returns the
  255. * image, or NULL upon error.
  256. */
  257. gdImagePtr gdImageCreateFromJpegCtx (gdIOCtx * infile)
  258. {
  259. return gdImageCreateFromJpegCtxEx(infile, 1);
  260. }
  261. gdImagePtr gdImageCreateFromJpegCtxEx (gdIOCtx * infile, int ignore_warning)
  262. {
  263. struct jpeg_decompress_struct cinfo;
  264. struct jpeg_error_mgr jerr;
  265. jmpbuf_wrapper jmpbufw;
  266. /* volatile so we can gdFree them after longjmp */
  267. volatile JSAMPROW row = 0;
  268. volatile gdImagePtr im = 0;
  269. JSAMPROW rowptr[1];
  270. unsigned int i, j;
  271. int retval;
  272. JDIMENSION nrows;
  273. int channels = 3;
  274. int inverted = 0;
  275. memset (&cinfo, 0, sizeof (cinfo));
  276. memset (&jerr, 0, sizeof (jerr));
  277. jmpbufw.ignore_warning = ignore_warning;
  278. cinfo.err = jpeg_std_error (&jerr);
  279. cinfo.client_data = &jmpbufw;
  280. cinfo.err->emit_message = (void (*)(j_common_ptr,int)) php_jpeg_emit_message;
  281. if (setjmp (jmpbufw.jmpbuf) != 0) {
  282. /* we're here courtesy of longjmp */
  283. if (row) {
  284. gdFree (row);
  285. }
  286. if (im) {
  287. gdImageDestroy (im);
  288. }
  289. return 0;
  290. }
  291. cinfo.err->error_exit = fatal_jpeg_error;
  292. jpeg_create_decompress (&cinfo);
  293. jpeg_gdIOCtx_src (&cinfo, infile);
  294. /* 2.0.22: save the APP14 marker to check for Adobe Photoshop CMYK files with inverted components. */
  295. jpeg_save_markers(&cinfo, JPEG_APP0 + 14, 256);
  296. retval = jpeg_read_header (&cinfo, TRUE);
  297. if (retval != JPEG_HEADER_OK) {
  298. php_gd_error_ex(E_WARNING, "gd-jpeg: warning: jpeg_read_header returned %d, expected %d", retval, JPEG_HEADER_OK);
  299. }
  300. if (cinfo.image_height > INT_MAX) {
  301. php_gd_error_ex(E_WARNING, "gd-jpeg: warning: JPEG image height (%u) is greater than INT_MAX (%d) (and thus greater than gd can handle)", cinfo.image_height, INT_MAX);
  302. }
  303. if (cinfo.image_width > INT_MAX) {
  304. php_gd_error_ex(E_WARNING, "gd-jpeg: warning: JPEG image width (%u) is greater than INT_MAX (%d) (and thus greater than gd can handle)", cinfo.image_width, INT_MAX);
  305. }
  306. im = gdImageCreateTrueColor ((int) cinfo.image_width, (int) cinfo.image_height);
  307. if (im == 0) {
  308. php_gd_error("gd-jpeg error: cannot allocate gdImage struct");
  309. goto error;
  310. }
  311. /* 2.0.22: very basic support for reading CMYK colorspace files. Nice for
  312. * thumbnails but there's no support for fussy adjustment of the
  313. * assumed properties of inks and paper. */
  314. if ((cinfo.jpeg_color_space == JCS_CMYK) || (cinfo.jpeg_color_space == JCS_YCCK)) {
  315. cinfo.out_color_space = JCS_CMYK;
  316. } else {
  317. cinfo.out_color_space = JCS_RGB;
  318. }
  319. if (jpeg_start_decompress (&cinfo) != TRUE) {
  320. php_gd_error("gd-jpeg: warning: jpeg_start_decompress reports suspended data source");
  321. }
  322. /* REMOVED by TBB 2/12/01. This field of the structure is
  323. * documented as private, and sure enough it's gone in the
  324. * latest libjpeg, replaced by something else. Unfortunately
  325. * there is still no right way to find out if the file was
  326. * progressive or not; just declare your intent before you
  327. * write one by calling gdImageInterlace(im, 1) yourself.
  328. * After all, we're not really supposed to rework JPEGs and
  329. * write them out again anyway. Lossy compression, remember?
  330. */
  331. #if 0
  332. gdImageInterlace (im, cinfo.progressive_mode != 0);
  333. #endif
  334. if (cinfo.out_color_space == JCS_RGB) {
  335. if (cinfo.output_components != 3) {
  336. php_gd_error_ex(E_WARNING, "gd-jpeg: error: JPEG color quantization request resulted in output_components == %d (expected 3 for RGB)", cinfo.output_components);
  337. goto error;
  338. }
  339. channels = 3;
  340. } else if (cinfo.out_color_space == JCS_CMYK) {
  341. jpeg_saved_marker_ptr marker;
  342. if (cinfo.output_components != 4) {
  343. php_gd_error_ex(E_WARNING, "gd-jpeg: error: JPEG color quantization request resulted in output_components == %d (expected 4 for CMYK)", cinfo.output_components);
  344. goto error;
  345. }
  346. channels = 4;
  347. marker = cinfo.marker_list;
  348. while (marker) {
  349. if ((marker->marker == (JPEG_APP0 + 14)) && (marker->data_length >= 12) && (!strncmp((const char *) marker->data, "Adobe", 5))) {
  350. inverted = 1;
  351. break;
  352. }
  353. marker = marker->next;
  354. }
  355. } else {
  356. php_gd_error_ex(E_WARNING, "gd-jpeg: error: unexpected colorspace.");
  357. goto error;
  358. }
  359. #if BITS_IN_JSAMPLE == 12
  360. php_gd_error("gd-jpeg: error: jpeg library was compiled for 12-bit precision. This is mostly useless, because JPEGs on the web are 8-bit and such versions of the jpeg library won't read or write them. GD doesn't support these unusual images. Edit your jmorecfg.h file to specify the correct precision and completely 'make clean' and 'make install' libjpeg again. Sorry.");
  361. goto error;
  362. #endif /* BITS_IN_JSAMPLE == 12 */
  363. row = safe_emalloc(cinfo.output_width * channels, sizeof(JSAMPLE), 0);
  364. memset(row, 0, cinfo.output_width * channels * sizeof(JSAMPLE));
  365. rowptr[0] = row;
  366. if (cinfo.out_color_space == JCS_CMYK) {
  367. for (i = 0; i < cinfo.output_height; i++) {
  368. register JSAMPROW currow = row;
  369. register int *tpix = im->tpixels[i];
  370. nrows = jpeg_read_scanlines (&cinfo, rowptr, 1);
  371. if (nrows != 1) {
  372. php_gd_error_ex(E_WARNING, "gd-jpeg: error: jpeg_read_scanlines returns %u, expected 1", nrows);
  373. goto error;
  374. }
  375. for (j = 0; j < cinfo.output_width; j++, currow += 4, tpix++) {
  376. *tpix = CMYKToRGB (currow[0], currow[1], currow[2], currow[3], inverted);
  377. }
  378. }
  379. } else {
  380. for (i = 0; i < cinfo.output_height; i++) {
  381. register JSAMPROW currow = row;
  382. register int *tpix = im->tpixels[i];
  383. nrows = jpeg_read_scanlines (&cinfo, rowptr, 1);
  384. if (nrows != 1) {
  385. php_gd_error_ex(E_WARNING, "gd-jpeg: error: jpeg_read_scanlines returns %u, expected 1", nrows);
  386. goto error;
  387. }
  388. for (j = 0; j < cinfo.output_width; j++, currow += 3, tpix++) {
  389. *tpix = gdTrueColor (currow[0], currow[1], currow[2]);
  390. }
  391. }
  392. }
  393. if (jpeg_finish_decompress (&cinfo) != TRUE) {
  394. php_gd_error("gd-jpeg: warning: jpeg_finish_decompress reports suspended data source");
  395. }
  396. if (!ignore_warning) {
  397. if (cinfo.err->num_warnings > 0) {
  398. goto error;
  399. }
  400. }
  401. jpeg_destroy_decompress (&cinfo);
  402. gdFree (row);
  403. return im;
  404. error:
  405. jpeg_destroy_decompress (&cinfo);
  406. if (row) {
  407. gdFree (row);
  408. }
  409. if (im) {
  410. gdImageDestroy (im);
  411. }
  412. return 0;
  413. }
  414. /* A very basic conversion approach, TBB */
  415. static int CMYKToRGB(int c, int m, int y, int k, int inverted)
  416. {
  417. if (inverted) {
  418. c = 255 - c;
  419. m = 255 - m;
  420. y = 255 - y;
  421. k = 255 - k;
  422. }
  423. return gdTrueColor((255 - c) * (255 - k) / 255, (255 - m) * (255 - k) / 255, (255 - y) * (255 - k) / 255);
  424. }
  425. /*
  426. * gdIOCtx JPEG data sources and sinks, T. Boutell
  427. * almost a simple global replace from T. Lane's stdio versions.
  428. *
  429. */
  430. /* Different versions of libjpeg use either 'jboolean' or 'boolean', and
  431. some platforms define 'boolean', and so forth. Deal with this
  432. madness by typedeffing 'safeboolean' to 'boolean' if HAVE_BOOLEAN
  433. is already set, because this is the test that libjpeg uses.
  434. Otherwise, typedef it to int, because that's what libjpeg does
  435. if HAVE_BOOLEAN is not defined. -TBB */
  436. #ifdef HAVE_BOOLEAN
  437. typedef boolean safeboolean;
  438. #else
  439. typedef int safeboolean;
  440. #endif /* HAVE_BOOLEAN */
  441. /* Expanded data source object for gdIOCtx input */
  442. typedef struct
  443. {
  444. struct jpeg_source_mgr pub; /* public fields */
  445. gdIOCtx *infile; /* source stream */
  446. unsigned char *buffer; /* start of buffer */
  447. safeboolean start_of_file; /* have we gotten any data yet? */
  448. } my_source_mgr;
  449. typedef my_source_mgr *my_src_ptr;
  450. #define INPUT_BUF_SIZE 4096 /* choose an efficiently fread'able size */
  451. /*
  452. * Initialize source --- called by jpeg_read_header
  453. * before any data is actually read.
  454. */
  455. void init_source (j_decompress_ptr cinfo)
  456. {
  457. my_src_ptr src = (my_src_ptr) cinfo->src;
  458. /* We reset the empty-input-file flag for each image,
  459. * but we don't clear the input buffer.
  460. * This is correct behavior for reading a series of images from one source.
  461. */
  462. src->start_of_file = TRUE;
  463. }
  464. /*
  465. * Fill the input buffer --- called whenever buffer is emptied.
  466. *
  467. * In typical applications, this should read fresh data into the buffer
  468. * (ignoring the current state of next_input_byte & bytes_in_buffer),
  469. * reset the pointer & count to the start of the buffer, and return TRUE
  470. * indicating that the buffer has been reloaded. It is not necessary to
  471. * fill the buffer entirely, only to obtain at least one more byte.
  472. *
  473. * There is no such thing as an EOF return. If the end of the file has been
  474. * reached, the routine has a choice of ERREXIT() or inserting fake data into
  475. * the buffer. In most cases, generating a warning message and inserting a
  476. * fake EOI marker is the best course of action --- this will allow the
  477. * decompressor to output however much of the image is there. However,
  478. * the resulting error message is misleading if the real problem is an empty
  479. * input file, so we handle that case specially.
  480. *
  481. * In applications that need to be able to suspend compression due to input
  482. * not being available yet, a FALSE return indicates that no more data can be
  483. * obtained right now, but more may be forthcoming later. In this situation,
  484. * the decompressor will return to its caller (with an indication of the
  485. * number of scanlines it has read, if any). The application should resume
  486. * decompression after it has loaded more data into the input buffer. Note
  487. * that there are substantial restrictions on the use of suspension --- see
  488. * the documentation.
  489. *
  490. * When suspending, the decompressor will back up to a convenient restart point
  491. * (typically the start of the current MCU). next_input_byte & bytes_in_buffer
  492. * indicate where the restart point will be if the current call returns FALSE.
  493. * Data beyond this point must be rescanned after resumption, so move it to
  494. * the front of the buffer rather than discarding it.
  495. */
  496. #define END_JPEG_SEQUENCE "\r\n[*]--:END JPEG:--[*]\r\n"
  497. safeboolean fill_input_buffer (j_decompress_ptr cinfo)
  498. {
  499. my_src_ptr src = (my_src_ptr) cinfo->src;
  500. /* 2.0.12: signed size. Thanks to Geert Jansen */
  501. ssize_t nbytes = 0;
  502. /* ssize_t got; */
  503. /* char *s; */
  504. memset(src->buffer, 0, INPUT_BUF_SIZE);
  505. while (nbytes < INPUT_BUF_SIZE) {
  506. int got = gdGetBuf(src->buffer + nbytes, INPUT_BUF_SIZE - nbytes, src->infile);
  507. if (got == EOF || got == 0) {
  508. /* EOF or error. If we got any data, don't worry about it. If we didn't, then this is unexpected. */
  509. if (!nbytes) {
  510. nbytes = -1;
  511. }
  512. break;
  513. }
  514. nbytes += got;
  515. }
  516. if (nbytes <= 0) {
  517. if (src->start_of_file) { /* Treat empty input file as fatal error */
  518. ERREXIT (cinfo, JERR_INPUT_EMPTY);
  519. }
  520. WARNMS (cinfo, JWRN_JPEG_EOF);
  521. /* Insert a fake EOI marker */
  522. src->buffer[0] = (unsigned char) 0xFF;
  523. src->buffer[1] = (unsigned char) JPEG_EOI;
  524. nbytes = 2;
  525. }
  526. src->pub.next_input_byte = src->buffer;
  527. src->pub.bytes_in_buffer = nbytes;
  528. src->start_of_file = FALSE;
  529. return TRUE;
  530. }
  531. /*
  532. * Skip data --- used to skip over a potentially large amount of
  533. * uninteresting data (such as an APPn marker).
  534. *
  535. * Writers of suspendable-input applications must note that skip_input_data
  536. * is not granted the right to give a suspension return. If the skip extends
  537. * beyond the data currently in the buffer, the buffer can be marked empty so
  538. * that the next read will cause a fill_input_buffer call that can suspend.
  539. * Arranging for additional bytes to be discarded before reloading the input
  540. * buffer is the application writer's problem.
  541. */
  542. void skip_input_data (j_decompress_ptr cinfo, long num_bytes)
  543. {
  544. my_src_ptr src = (my_src_ptr) cinfo->src;
  545. /* Just a dumb implementation for now. Not clear that being smart is worth
  546. * any trouble anyway --- large skips are infrequent.
  547. */
  548. if (num_bytes > 0) {
  549. while (num_bytes > (long) src->pub.bytes_in_buffer) {
  550. num_bytes -= (long) src->pub.bytes_in_buffer;
  551. (void) fill_input_buffer (cinfo);
  552. /* note we assume that fill_input_buffer will never return FALSE,
  553. * so suspension need not be handled.
  554. */
  555. }
  556. src->pub.next_input_byte += (size_t) num_bytes;
  557. src->pub.bytes_in_buffer -= (size_t) num_bytes;
  558. }
  559. }
  560. /*
  561. * An additional method that can be provided by data source modules is the
  562. * resync_to_restart method for error recovery in the presence of RST markers.
  563. * For the moment, this source module just uses the default resync method
  564. * provided by the JPEG library. That method assumes that no backtracking
  565. * is possible.
  566. */
  567. /*
  568. * Terminate source --- called by jpeg_finish_decompress
  569. * after all data has been read. Often a no-op.
  570. *
  571. * NB: *not* called by jpeg_abort or jpeg_destroy; surrounding
  572. * application must deal with any cleanup that should happen even
  573. * for error exit.
  574. */
  575. void term_source (j_decompress_ptr cinfo)
  576. {
  577. #if 0
  578. * never used */
  579. my_src_ptr src = (my_src_ptr) cinfo->src;
  580. #endif
  581. }
  582. /*
  583. * Prepare for input from a gdIOCtx stream.
  584. * The caller must have already opened the stream, and is responsible
  585. * for closing it after finishing decompression.
  586. */
  587. void jpeg_gdIOCtx_src (j_decompress_ptr cinfo, gdIOCtx * infile)
  588. {
  589. my_src_ptr src;
  590. /* The source object and input buffer are made permanent so that a series
  591. * of JPEG images can be read from the same file by calling jpeg_gdIOCtx_src
  592. * only before the first one. (If we discarded the buffer at the end of
  593. * one image, we'd likely lose the start of the next one.)
  594. * This makes it unsafe to use this manager and a different source
  595. * manager serially with the same JPEG object. Caveat programmer.
  596. */
  597. if (cinfo->src == NULL) { /* first time for this JPEG object? */
  598. cinfo->src = (struct jpeg_source_mgr *)
  599. (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_PERMANENT, sizeof (my_source_mgr));
  600. src = (my_src_ptr) cinfo->src;
  601. src->buffer = (unsigned char *) (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_PERMANENT, INPUT_BUF_SIZE * sizeof (unsigned char));
  602. }
  603. src = (my_src_ptr) cinfo->src;
  604. src->pub.init_source = init_source;
  605. src->pub.fill_input_buffer = fill_input_buffer;
  606. src->pub.skip_input_data = skip_input_data;
  607. src->pub.resync_to_restart = jpeg_resync_to_restart; /* use default method */
  608. src->pub.term_source = term_source;
  609. src->infile = infile;
  610. src->pub.bytes_in_buffer = 0; /* forces fill_input_buffer on first read */
  611. src->pub.next_input_byte = NULL; /* until buffer loaded */
  612. }
  613. /* Expanded data destination object for stdio output */
  614. typedef struct
  615. {
  616. struct jpeg_destination_mgr pub; /* public fields */
  617. gdIOCtx *outfile; /* target stream */
  618. unsigned char *buffer; /* start of buffer */
  619. } my_destination_mgr;
  620. typedef my_destination_mgr *my_dest_ptr;
  621. #define OUTPUT_BUF_SIZE 4096 /* choose an efficiently fwrite'able size */
  622. /*
  623. * Initialize destination --- called by jpeg_start_compress
  624. * before any data is actually written.
  625. */
  626. void init_destination (j_compress_ptr cinfo)
  627. {
  628. my_dest_ptr dest = (my_dest_ptr) cinfo->dest;
  629. /* Allocate the output buffer --- it will be released when done with image */
  630. dest->buffer = (unsigned char *) (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE, OUTPUT_BUF_SIZE * sizeof (unsigned char));
  631. dest->pub.next_output_byte = dest->buffer;
  632. dest->pub.free_in_buffer = OUTPUT_BUF_SIZE;
  633. }
  634. /*
  635. * Empty the output buffer --- called whenever buffer fills up.
  636. *
  637. * In typical applications, this should write the entire output buffer
  638. * (ignoring the current state of next_output_byte & free_in_buffer),
  639. * reset the pointer & count to the start of the buffer, and return TRUE
  640. * indicating that the buffer has been dumped.
  641. *
  642. * In applications that need to be able to suspend compression due to output
  643. * overrun, a FALSE return indicates that the buffer cannot be emptied now.
  644. * In this situation, the compressor will return to its caller (possibly with
  645. * an indication that it has not accepted all the supplied scanlines). The
  646. * application should resume compression after it has made more room in the
  647. * output buffer. Note that there are substantial restrictions on the use of
  648. * suspension --- see the documentation.
  649. *
  650. * When suspending, the compressor will back up to a convenient restart point
  651. * (typically the start of the current MCU). next_output_byte & free_in_buffer
  652. * indicate where the restart point will be if the current call returns FALSE.
  653. * Data beyond this point will be regenerated after resumption, so do not
  654. * write it out when emptying the buffer externally.
  655. */
  656. safeboolean empty_output_buffer (j_compress_ptr cinfo)
  657. {
  658. my_dest_ptr dest = (my_dest_ptr) cinfo->dest;
  659. if (gdPutBuf (dest->buffer, OUTPUT_BUF_SIZE, dest->outfile) != (size_t) OUTPUT_BUF_SIZE) {
  660. ERREXIT (cinfo, JERR_FILE_WRITE);
  661. }
  662. dest->pub.next_output_byte = dest->buffer;
  663. dest->pub.free_in_buffer = OUTPUT_BUF_SIZE;
  664. return TRUE;
  665. }
  666. /*
  667. * Terminate destination --- called by jpeg_finish_compress
  668. * after all data has been written. Usually needs to flush buffer.
  669. *
  670. * NB: *not* called by jpeg_abort or jpeg_destroy; surrounding
  671. * application must deal with any cleanup that should happen even
  672. * for error exit.
  673. */
  674. void term_destination (j_compress_ptr cinfo)
  675. {
  676. my_dest_ptr dest = (my_dest_ptr) cinfo->dest;
  677. size_t datacount = OUTPUT_BUF_SIZE - dest->pub.free_in_buffer;
  678. /* Write any data remaining in the buffer */
  679. if (datacount > 0 && ((size_t)gdPutBuf (dest->buffer, datacount, dest->outfile) != datacount)) {
  680. ERREXIT (cinfo, JERR_FILE_WRITE);
  681. }
  682. }
  683. /*
  684. * Prepare for output to a stdio stream.
  685. * The caller must have already opened the stream, and is responsible
  686. * for closing it after finishing compression.
  687. */
  688. void jpeg_gdIOCtx_dest (j_compress_ptr cinfo, gdIOCtx * outfile)
  689. {
  690. my_dest_ptr dest;
  691. /* The destination object is made permanent so that multiple JPEG images
  692. * can be written to the same file without re-executing jpeg_stdio_dest.
  693. * This makes it dangerous to use this manager and a different destination
  694. * manager serially with the same JPEG object, because their private object
  695. * sizes may be different. Caveat programmer.
  696. */
  697. if (cinfo->dest == NULL) { /* first time for this JPEG object? */
  698. cinfo->dest = (struct jpeg_destination_mgr *) (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_PERMANENT, sizeof (my_destination_mgr));
  699. }
  700. dest = (my_dest_ptr) cinfo->dest;
  701. dest->pub.init_destination = init_destination;
  702. dest->pub.empty_output_buffer = empty_output_buffer;
  703. dest->pub.term_destination = term_destination;
  704. dest->outfile = outfile;
  705. }
  706. #endif /* HAVE_JPEG */