LIBJPEG.TXT
上传用户:dgcrss
上传日期:2007-01-03
资源大小:390k
文件大小:146k
源码类别:

图片显示

开发平台:

Visual C++

  1. USING THE IJG JPEG LIBRARY
  2. Copyright (C) 1994-1996, Thomas G. Lane.
  3. This file is part of the Independent JPEG Group's software.
  4. For conditions of distribution and use, see the accompanying README file.
  5. This file describes how to use the IJG JPEG library within an application
  6. program.  Read it if you want to write a program that uses the library.
  7. The file example.c provides heavily commented skeleton code for calling the
  8. JPEG library.  Also see jpeglib.h (the include file to be used by application
  9. programs) for full details about data structures and function parameter lists.
  10. The library source code, of course, is the ultimate reference.
  11. Note that there have been *major* changes from the application interface
  12. presented by IJG version 4 and earlier versions.  The old design had several
  13. inherent limitations, and it had accumulated a lot of cruft as we added
  14. features while trying to minimize application-interface changes.  We have
  15. sacrificed backward compatibility in the version 5 rewrite, but we think the
  16. improvements justify this.
  17. TABLE OF CONTENTS
  18. -----------------
  19. Overview:
  20. Functions provided by the library
  21. Outline of typical usage
  22. Basic library usage:
  23. Data formats
  24. Compression details
  25. Decompression details
  26. Mechanics of usage: include files, linking, etc
  27. Advanced features:
  28. Compression parameter selection
  29. Decompression parameter selection
  30. Special color spaces
  31. Error handling
  32. Compressed data handling (source and destination managers)
  33. I/O suspension
  34. Progressive JPEG support
  35. Buffered-image mode
  36. Abbreviated datastreams and multiple images
  37. Special markers
  38. Raw (downsampled) image data
  39. Really raw data: DCT coefficients
  40. Progress monitoring
  41. Memory management
  42. Library compile-time options
  43. Portability considerations
  44. Notes for MS-DOS implementors
  45. You should read at least the overview and basic usage sections before trying
  46. to program with the library.  The sections on advanced features can be read
  47. if and when you need them.
  48. OVERVIEW
  49. ========
  50. Functions provided by the library
  51. ---------------------------------
  52. The IJG JPEG library provides C code to read and write JPEG-compressed image
  53. files.  The surrounding application program receives or supplies image data a
  54. scanline at a time, using a straightforward uncompressed image format.  All
  55. details of color conversion and other preprocessing/postprocessing can be
  56. handled by the library.
  57. The library includes a substantial amount of code that is not covered by the
  58. JPEG standard but is necessary for typical applications of JPEG.  These
  59. functions preprocess the image before JPEG compression or postprocess it after
  60. decompression.  They include colorspace conversion, downsampling/upsampling,
  61. and color quantization.  The application indirectly selects use of this code
  62. by specifying the format in which it wishes to supply or receive image data.
  63. For example, if colormapped output is requested, then the decompression
  64. library automatically invokes color quantization.
  65. A wide range of quality vs. speed tradeoffs are possible in JPEG processing,
  66. and even more so in decompression postprocessing.  The decompression library
  67. provides multiple implementations that cover most of the useful tradeoffs,
  68. ranging from very-high-quality down to fast-preview operation.  On the
  69. compression side we have generally not provided low-quality choices, since
  70. compression is normally less time-critical.  It should be understood that the
  71. low-quality modes may not meet the JPEG standard's accuracy requirements;
  72. nonetheless, they are useful for viewers.
  73. A word about functions *not* provided by the library.  We handle a subset of
  74. the ISO JPEG standard; most baseline, extended-sequential, and progressive
  75. JPEG processes are supported.  (Our subset includes all features now in common
  76. use.)  Unsupported ISO options include:
  77. * Hierarchical storage
  78. * Lossless JPEG
  79. * Arithmetic entropy coding (unsupported for legal reasons)
  80. * DNL marker
  81. * Nonintegral subsampling ratios
  82. We support both 8- and 12-bit data precision, but this is a compile-time
  83. choice rather than a run-time choice; hence it is difficult to use both
  84. precisions in a single application.
  85. By itself, the library handles only interchange JPEG datastreams --- in
  86. particular the widely used JFIF file format.  The library can be used by
  87. surrounding code to process interchange or abbreviated JPEG datastreams that
  88. are embedded in more complex file formats.  (For example, this library is
  89. used by the free LIBTIFF library to support JPEG compression in TIFF.)
  90. Outline of typical usage
  91. ------------------------
  92. The rough outline of a JPEG compression operation is:
  93. Allocate and initialize a JPEG compression object
  94. Specify the destination for the compressed data (eg, a file)
  95. Set parameters for compression, including image size & colorspace
  96. jpeg_start_compress(...);
  97. while (scan lines remain to be written)
  98. jpeg_write_scanlines(...);
  99. jpeg_finish_compress(...);
  100. Release the JPEG compression object
  101. A JPEG compression object holds parameters and working state for the JPEG
  102. library.  We make creation/destruction of the object separate from starting
  103. or finishing compression of an image; the same object can be re-used for a
  104. series of image compression operations.  This makes it easy to re-use the
  105. same parameter settings for a sequence of images.  Re-use of a JPEG object
  106. also has important implications for processing abbreviated JPEG datastreams,
  107. as discussed later.
  108. The image data to be compressed is supplied to jpeg_write_scanlines() from
  109. in-memory buffers.  If the application is doing file-to-file compression,
  110. reading image data from the source file is the application's responsibility.
  111. The library emits compressed data by calling a "data destination manager",
  112. which typically will write the data into a file; but the application can
  113. provide its own destination manager to do something else.
  114. Similarly, the rough outline of a JPEG decompression operation is:
  115. Allocate and initialize a JPEG decompression object
  116. Specify the source of the compressed data (eg, a file)
  117. Call jpeg_read_header() to obtain image info
  118. Set parameters for decompression
  119. jpeg_start_decompress(...);
  120. while (scan lines remain to be read)
  121. jpeg_read_scanlines(...);
  122. jpeg_finish_decompress(...);
  123. Release the JPEG decompression object
  124. This is comparable to the compression outline except that reading the
  125. datastream header is a separate step.  This is helpful because information
  126. about the image's size, colorspace, etc is available when the application
  127. selects decompression parameters.  For example, the application can choose an
  128. output scaling ratio that will fit the image into the available screen size.
  129. The decompression library obtains compressed data by calling a data source
  130. manager, which typically will read the data from a file; but other behaviors
  131. can be obtained with a custom source manager.  Decompressed data is delivered
  132. into in-memory buffers passed to jpeg_read_scanlines().
  133. It is possible to abort an incomplete compression or decompression operation
  134. by calling jpeg_abort(); or, if you do not need to retain the JPEG object,
  135. simply release it by calling jpeg_destroy().
  136. JPEG compression and decompression objects are two separate struct types.
  137. However, they share some common fields, and certain routines such as
  138. jpeg_destroy() can work on either type of object.
  139. The JPEG library has no static variables: all state is in the compression
  140. or decompression object.  Therefore it is possible to process multiple
  141. compression and decompression operations concurrently, using multiple JPEG
  142. objects.
  143. Both compression and decompression can be done in an incremental memory-to-
  144. memory fashion, if suitable source/destination managers are used.  See the
  145. section on "I/O suspension" for more details.
  146. BASIC LIBRARY USAGE
  147. ===================
  148. Data formats
  149. ------------
  150. Before diving into procedural details, it is helpful to understand the
  151. image data format that the JPEG library expects or returns.
  152. The standard input image format is a rectangular array of pixels, with each
  153. pixel having the same number of "component" or "sample" values (color
  154. channels).  You must specify how many components there are and the colorspace
  155. interpretation of the components.  Most applications will use RGB data
  156. (three components per pixel) or grayscale data (one component per pixel).
  157. PLEASE NOTE THAT RGB DATA IS THREE SAMPLES PER PIXEL, GRAYSCALE ONLY ONE.
  158. A remarkable number of people manage to miss this, only to find that their
  159. programs don't work with grayscale JPEG files.
  160. There is no provision for colormapped input.  JPEG files are always full-color
  161. or full grayscale (or sometimes another colorspace such as CMYK).  You can
  162. feed in a colormapped image by expanding it to full-color format.  However
  163. JPEG often doesn't work very well with source data that has been colormapped,
  164. because of dithering noise.  This is discussed in more detail in the JPEG FAQ
  165. and the other references mentioned in the README file.
  166. Pixels are stored by scanlines, with each scanline running from left to
  167. right.  The component values for each pixel are adjacent in the row; for
  168. example, R,G,B,R,G,B,R,G,B,... for 24-bit RGB color.  Each scanline is an
  169. array of data type JSAMPLE --- which is typically "unsigned char", unless
  170. you've changed jmorecfg.h.  (You can also change the RGB pixel layout, say
  171. to B,G,R order, by modifying jmorecfg.h.  But see the restrictions listed in
  172. that file before doing so.)
  173. A 2-D array of pixels is formed by making a list of pointers to the starts of
  174. scanlines; so the scanlines need not be physically adjacent in memory.  Even
  175. if you process just one scanline at a time, you must make a one-element
  176. pointer array to conform to this structure.  Pointers to JSAMPLE rows are of
  177. type JSAMPROW, and the pointer to the pointer array is of type JSAMPARRAY.
  178. The library accepts or supplies one or more complete scanlines per call.
  179. It is not possible to process part of a row at a time.  Scanlines are always
  180. processed top-to-bottom.  You can process an entire image in one call if you
  181. have it all in memory, but usually it's simplest to process one scanline at
  182. a time.
  183. For best results, source data values should have the precision specified by
  184. BITS_IN_JSAMPLE (normally 8 bits).  For instance, if you choose to compress
  185. data that's only 6 bits/channel, you should left-justify each value in a
  186. byte before passing it to the compressor.  If you need to compress data
  187. that has more than 8 bits/channel, compile with BITS_IN_JSAMPLE = 12.
  188. (See "Library compile-time options", later.)
  189. The data format returned by the decompressor is the same in all details,
  190. except that colormapped output is supported.  (Again, a JPEG file is never
  191. colormapped.  But you can ask the decompressor to perform on-the-fly color
  192. quantization to deliver colormapped output.)  If you request colormapped
  193. output then the returned data array contains a single JSAMPLE per pixel;
  194. its value is an index into a color map.  The color map is represented as
  195. a 2-D JSAMPARRAY in which each row holds the values of one color component,
  196. that is, colormap[i][j] is the value of the i'th color component for pixel
  197. value (map index) j.  Note that since the colormap indexes are stored in
  198. JSAMPLEs, the maximum number of colors is limited by the size of JSAMPLE
  199. (ie, at most 256 colors for an 8-bit JPEG library).
  200. Compression details
  201. -------------------
  202. Here we revisit the JPEG compression outline given in the overview.
  203. 1. Allocate and initialize a JPEG compression object.
  204. A JPEG compression object is a "struct jpeg_compress_struct".  (It also has
  205. a bunch of subsidiary structures which are allocated via malloc(), but the
  206. application doesn't control those directly.)  This struct can be just a local
  207. variable in the calling routine, if a single routine is going to execute the
  208. whole JPEG compression sequence.  Otherwise it can be static or allocated
  209. from malloc().
  210. You will also need a structure representing a JPEG error handler.  The part
  211. of this that the library cares about is a "struct jpeg_error_mgr".  If you
  212. are providing your own error handler, you'll typically want to embed the
  213. jpeg_error_mgr struct in a larger structure; this is discussed later under
  214. "Error handling".  For now we'll assume you are just using the default error
  215. handler.  The default error handler will print JPEG error/warning messages
  216. on stderr, and it will call exit() if a fatal error occurs.
  217. You must initialize the error handler structure, store a pointer to it into
  218. the JPEG object's "err" field, and then call jpeg_create_compress() to
  219. initialize the rest of the JPEG object.
  220. Typical code for this step, if you are using the default error handler, is
  221. struct jpeg_compress_struct cinfo;
  222. struct jpeg_error_mgr jerr;
  223. ...
  224. cinfo.err = jpeg_std_error(&jerr);
  225. jpeg_create_compress(&cinfo);
  226. jpeg_create_compress allocates a small amount of memory, so it could fail
  227. if you are out of memory.  In that case it will exit via the error handler;
  228. that's why the error handler must be initialized first.
  229. 2. Specify the destination for the compressed data (eg, a file).
  230. As previously mentioned, the JPEG library delivers compressed data to a
  231. "data destination" module.  The library includes one data destination
  232. module which knows how to write to a stdio stream.  You can use your own
  233. destination module if you want to do something else, as discussed later.
  234. If you use the standard destination module, you must open the target stdio
  235. stream beforehand.  Typical code for this step looks like:
  236. FILE * outfile;
  237. ...
  238. if ((outfile = fopen(filename, "wb")) == NULL) {
  239.     fprintf(stderr, "can't open %sn", filename);
  240.     exit(1);
  241. }
  242. jpeg_stdio_dest(&cinfo, outfile);
  243. where the last line invokes the standard destination module.
  244. WARNING: it is critical that the binary compressed data be delivered to the
  245. output file unchanged.  On non-Unix systems the stdio library may perform
  246. newline translation or otherwise corrupt binary data.  To suppress this
  247. behavior, you may need to use a "b" option to fopen (as shown above), or use
  248. setmode() or another routine to put the stdio stream in binary mode.  See
  249. cjpeg.c and djpeg.c for code that has been found to work on many systems.
  250. You can select the data destination after setting other parameters (step 3),
  251. if that's more convenient.  You may not change the destination between
  252. calling jpeg_start_compress() and jpeg_finish_compress().
  253. 3. Set parameters for compression, including image size & colorspace.
  254. You must supply information about the source image by setting the following
  255. fields in the JPEG object (cinfo structure):
  256. image_width Width of image, in pixels
  257. image_height Height of image, in pixels
  258. input_components Number of color channels (samples per pixel)
  259. in_color_space Color space of source image
  260. The image dimensions are, hopefully, obvious.  JPEG supports image dimensions
  261. of 1 to 64K pixels in either direction.  The input color space is typically
  262. RGB or grayscale, and input_components is 3 or 1 accordingly.  (See "Special
  263. color spaces", later, for more info.)  The in_color_space field must be
  264. assigned one of the J_COLOR_SPACE enum constants, typically JCS_RGB or
  265. JCS_GRAYSCALE.
  266. JPEG has a large number of compression parameters that determine how the
  267. image is encoded.  Most applications don't need or want to know about all
  268. these parameters.  You can set all the parameters to reasonable defaults by
  269. calling jpeg_set_defaults(); then, if there are particular values you want
  270. to change, you can do so after that.  The "Compression parameter selection"
  271. section tells about all the parameters.
  272. You must set in_color_space correctly before calling jpeg_set_defaults(),
  273. because the defaults depend on the source image colorspace.  However the
  274. other three source image parameters need not be valid until you call
  275. jpeg_start_compress().  There's no harm in calling jpeg_set_defaults() more
  276. than once, if that happens to be convenient.
  277. Typical code for a 24-bit RGB source image is
  278. cinfo.image_width = Width;  /* image width and height, in pixels */
  279. cinfo.image_height = Height;
  280. cinfo.input_components = 3; /* # of color components per pixel */
  281. cinfo.in_color_space = JCS_RGB; /* colorspace of input image */
  282. jpeg_set_defaults(&cinfo);
  283. /* Make optional parameter settings here */
  284. 4. jpeg_start_compress(...);
  285. After you have established the data destination and set all the necessary
  286. source image info and other parameters, call jpeg_start_compress() to begin
  287. a compression cycle.  This will initialize internal state, allocate working
  288. storage, and emit the first few bytes of the JPEG datastream header.
  289. Typical code:
  290. jpeg_start_compress(&cinfo, TRUE);
  291. The "TRUE" parameter ensures that a complete JPEG interchange datastream
  292. will be written.  This is appropriate in most cases.  If you think you might
  293. want to use an abbreviated datastream, read the section on abbreviated
  294. datastreams, below.
  295. Once you have called jpeg_start_compress(), you may not alter any JPEG
  296. parameters or other fields of the JPEG object until you have completed
  297. the compression cycle.
  298. 5. while (scan lines remain to be written)
  299. jpeg_write_scanlines(...);
  300. Now write all the required image data by calling jpeg_write_scanlines()
  301. one or more times.  You can pass one or more scanlines in each call, up
  302. to the total image height.  In most applications it is convenient to pass
  303. just one or a few scanlines at a time.  The expected format for the passed
  304. data is discussed under "Data formats", above.
  305. Image data should be written in top-to-bottom scanline order.  The JPEG spec
  306. contains some weasel wording about how top and bottom are application-defined
  307. terms (a curious interpretation of the English language...) but if you want
  308. your files to be compatible with everyone else's, you WILL use top-to-bottom
  309. order.  If the source data must be read in bottom-to-top order, you can use
  310. the JPEG library's virtual array mechanism to invert the data efficiently.
  311. Examples of this can be found in the sample application cjpeg.
  312. The library maintains a count of the number of scanlines written so far
  313. in the next_scanline field of the JPEG object.  Usually you can just use
  314. this variable as the loop counter, so that the loop test looks like
  315. "while (cinfo.next_scanline < cinfo.image_height)".
  316. Code for this step depends heavily on the way that you store the source data.
  317. example.c shows the following code for the case of a full-size 2-D source
  318. array containing 3-byte RGB pixels:
  319. JSAMPROW row_pointer[1]; /* pointer to a single row */
  320. int row_stride; /* physical row width in buffer */
  321. row_stride = image_width * 3; /* JSAMPLEs per row in image_buffer */
  322. while (cinfo.next_scanline < cinfo.image_height) {
  323.     row_pointer[0] = & image_buffer[cinfo.next_scanline * row_stride];
  324.     jpeg_write_scanlines(&cinfo, row_pointer, 1);
  325. }
  326. jpeg_write_scanlines() returns the number of scanlines actually written.
  327. This will normally be equal to the number passed in, so you can usually
  328. ignore the return value.  It is different in just two cases:
  329.   * If you try to write more scanlines than the declared image height,
  330.     the additional scanlines are ignored.
  331.   * If you use a suspending data destination manager, output buffer overrun
  332.     will cause the compressor to return before accepting all the passed lines.
  333.     This feature is discussed under "I/O suspension", below.  The normal
  334.     stdio destination manager will NOT cause this to happen.
  335. In any case, the return value is the same as the change in the value of
  336. next_scanline.
  337. 6. jpeg_finish_compress(...);
  338. After all the image data has been written, call jpeg_finish_compress() to
  339. complete the compression cycle.  This step is ESSENTIAL to ensure that the
  340. last bufferload of data is written to the data destination.
  341. jpeg_finish_compress() also releases working memory associated with the JPEG
  342. object.
  343. Typical code:
  344. jpeg_finish_compress(&cinfo);
  345. If using the stdio destination manager, don't forget to close the output
  346. stdio stream if necessary.
  347. If you have requested a multi-pass operating mode, such as Huffman code
  348. optimization, jpeg_finish_compress() will perform the additional passes using
  349. data buffered by the first pass.  In this case jpeg_finish_compress() may take
  350. quite a while to complete.  With the default compression parameters, this will
  351. not happen.
  352. It is an error to call jpeg_finish_compress() before writing the necessary
  353. total number of scanlines.  If you wish to abort compression, call
  354. jpeg_abort() as discussed below.
  355. After completing a compression cycle, you may dispose of the JPEG object
  356. as discussed next, or you may use it to compress another image.  In that case
  357. return to step 2, 3, or 4 as appropriate.  If you do not change the
  358. destination manager, the new datastream will be written to the same target.
  359. If you do not change any JPEG parameters, the new datastream will be written
  360. with the same parameters as before.  Note that you can change the input image
  361. dimensions freely between cycles, but if you change the input colorspace, you
  362. should call jpeg_set_defaults() to adjust for the new colorspace; and then
  363. you'll need to repeat all of step 3.
  364. 7. Release the JPEG compression object.
  365. When you are done with a JPEG compression object, destroy it by calling
  366. jpeg_destroy_compress().  This will free all subsidiary memory.  Or you can
  367. call jpeg_destroy() which works for either compression or decompression
  368. objects --- this may be more convenient if you are sharing code between
  369. compression and decompression cases.  (Actually, these routines are equivalent
  370. except for the declared type of the passed pointer.  To avoid gripes from
  371. ANSI C compilers, jpeg_destroy() should be passed a j_common_ptr.)
  372. If you allocated the jpeg_compress_struct structure from malloc(), freeing
  373. it is your responsibility --- jpeg_destroy() won't.  Ditto for the error
  374. handler structure.
  375. Typical code:
  376. jpeg_destroy_compress(&cinfo);
  377. 8. Aborting.
  378. If you decide to abort a compression cycle before finishing, you can clean up
  379. in either of two ways:
  380. * If you don't need the JPEG object any more, just call
  381.   jpeg_destroy_compress() or jpeg_destroy() to release memory.  This is
  382.   legitimate at any point after calling jpeg_create_compress() --- in fact,
  383.   it's safe even if jpeg_create_compress() fails.
  384. * If you want to re-use the JPEG object, call jpeg_abort_compress(), or
  385.   jpeg_abort() which works on both compression and decompression objects.
  386.   This will return the object to an idle state, releasing any working memory.
  387.   jpeg_abort() is allowed at any time after successful object creation.
  388. Note that cleaning up the data destination, if required, is your
  389. responsibility.
  390. Decompression details
  391. ---------------------
  392. Here we revisit the JPEG decompression outline given in the overview.
  393. 1. Allocate and initialize a JPEG decompression object.
  394. This is just like initialization for compression, as discussed above,
  395. except that the object is a "struct jpeg_decompress_struct" and you
  396. call jpeg_create_decompress().  Error handling is exactly the same.
  397. Typical code:
  398. struct jpeg_decompress_struct cinfo;
  399. struct jpeg_error_mgr jerr;
  400. ...
  401. cinfo.err = jpeg_std_error(&jerr);
  402. jpeg_create_decompress(&cinfo);
  403. (Both here and in the IJG code, we usually use variable name "cinfo" for
  404. both compression and decompression objects.)
  405. 2. Specify the source of the compressed data (eg, a file).
  406. As previously mentioned, the JPEG library reads compressed data from a "data
  407. source" module.  The library includes one data source module which knows how
  408. to read from a stdio stream.  You can use your own source module if you want
  409. to do something else, as discussed later.
  410. If you use the standard source module, you must open the source stdio stream
  411. beforehand.  Typical code for this step looks like:
  412. FILE * infile;
  413. ...
  414. if ((infile = fopen(filename, "rb")) == NULL) {
  415.     fprintf(stderr, "can't open %sn", filename);
  416.     exit(1);
  417. }
  418. jpeg_stdio_src(&cinfo, infile);
  419. where the last line invokes the standard source module.
  420. WARNING: it is critical that the binary compressed data be read unchanged.
  421. On non-Unix systems the stdio library may perform newline translation or
  422. otherwise corrupt binary data.  To suppress this behavior, you may need to use
  423. a "b" option to fopen (as shown above), or use setmode() or another routine to
  424. put the stdio stream in binary mode.  See cjpeg.c and djpeg.c for code that
  425. has been found to work on many systems.
  426. You may not change the data source between calling jpeg_read_header() and
  427. jpeg_finish_decompress().  If you wish to read a series of JPEG images from
  428. a single source file, you should repeat the jpeg_read_header() to
  429. jpeg_finish_decompress() sequence without reinitializing either the JPEG
  430. object or the data source module; this prevents buffered input data from
  431. being discarded.
  432. 3. Call jpeg_read_header() to obtain image info.
  433. Typical code for this step is just
  434. jpeg_read_header(&cinfo, TRUE);
  435. This will read the source datastream header markers, up to the beginning
  436. of the compressed data proper.  On return, the image dimensions and other
  437. info have been stored in the JPEG object.  The application may wish to
  438. consult this information before selecting decompression parameters.
  439. More complex code is necessary if
  440.   * A suspending data source is used --- in that case jpeg_read_header()
  441.     may return before it has read all the header data.  See "I/O suspension",
  442.     below.  The normal stdio source manager will NOT cause this to happen.
  443.   * Abbreviated JPEG files are to be processed --- see the section on
  444.     abbreviated datastreams.  Standard applications that deal only in
  445.     interchange JPEG files need not be concerned with this case either.
  446. It is permissible to stop at this point if you just wanted to find out the
  447. image dimensions and other header info for a JPEG file.  In that case,
  448. call jpeg_destroy() when you are done with the JPEG object, or call
  449. jpeg_abort() to return it to an idle state before selecting a new data
  450. source and reading another header.
  451. 4. Set parameters for decompression.
  452. jpeg_read_header() sets appropriate default decompression parameters based on
  453. the properties of the image (in particular, its colorspace).  However, you
  454. may well want to alter these defaults before beginning the decompression.
  455. For example, the default is to produce full color output from a color file.
  456. If you want colormapped output you must ask for it.  Other options allow the
  457. returned image to be scaled and allow various speed/quality tradeoffs to be
  458. selected.  "Decompression parameter selection", below, gives details.
  459. If the defaults are appropriate, nothing need be done at this step.
  460. Note that all default values are set by each call to jpeg_read_header().
  461. If you reuse a decompression object, you cannot expect your parameter
  462. settings to be preserved across cycles, as you can for compression.
  463. You must set desired parameter values each time.
  464. 5. jpeg_start_decompress(...);
  465. Once the parameter values are satisfactory, call jpeg_start_decompress() to
  466. begin decompression.  This will initialize internal state, allocate working
  467. memory, and prepare for returning data.
  468. Typical code is just
  469. jpeg_start_decompress(&cinfo);
  470. If you have requested a multi-pass operating mode, such as 2-pass color
  471. quantization, jpeg_start_decompress() will do everything needed before data
  472. output can begin.  In this case jpeg_start_decompress() may take quite a while
  473. to complete.  With a single-scan (non progressive) JPEG file and default
  474. decompression parameters, this will not happen; jpeg_start_decompress() will
  475. return quickly.
  476. After this call, the final output image dimensions, including any requested
  477. scaling, are available in the JPEG object; so is the selected colormap, if
  478. colormapped output has been requested.  Useful fields include
  479. output_width image width and height, as scaled
  480. output_height
  481. out_color_components # of color components in out_color_space
  482. output_components # of color components returned per pixel
  483. colormap the selected colormap, if any
  484. actual_number_of_colors number of entries in colormap
  485. output_components is 1 (a colormap index) when quantizing colors; otherwise it
  486. equals out_color_components.  It is the number of JSAMPLE values that will be
  487. emitted per pixel in the output arrays.
  488. Typically you will need to allocate data buffers to hold the incoming image.
  489. You will need output_width * output_components JSAMPLEs per scanline in your
  490. output buffer, and a total of output_height scanlines will be returned.
  491. Note: if you are using the JPEG library's internal memory manager to allocate
  492. data buffers (as djpeg does), then the manager's protocol requires that you
  493. request large buffers *before* calling jpeg_start_decompress().  This is a
  494. little tricky since the output_XXX fields are not normally valid then.  You
  495. can make them valid by calling jpeg_calc_output_dimensions() after setting the
  496. relevant parameters (scaling, output color space, and quantization flag).
  497. 6. while (scan lines remain to be read)
  498. jpeg_read_scanlines(...);
  499. Now you can read the decompressed image data by calling jpeg_read_scanlines()
  500. one or more times.  At each call, you pass in the maximum number of scanlines
  501. to be read (ie, the height of your working buffer); jpeg_read_scanlines()
  502. will return up to that many lines.  The return value is the number of lines
  503. actually read.  The format of the returned data is discussed under "Data
  504. formats", above.  Don't forget that grayscale and color JPEGs will return
  505. different data formats!
  506. Image data is returned in top-to-bottom scanline order.  If you must write
  507. out the image in bottom-to-top order, you can use the JPEG library's virtual
  508. array mechanism to invert the data efficiently.  Examples of this can be
  509. found in the sample application djpeg.
  510. The library maintains a count of the number of scanlines returned so far
  511. in the output_scanline field of the JPEG object.  Usually you can just use
  512. this variable as the loop counter, so that the loop test looks like
  513. "while (cinfo.output_scanline < cinfo.output_height)".  (Note that the test
  514. should NOT be against image_height, unless you never use scaling.  The
  515. image_height field is the height of the original unscaled image.)
  516. The return value always equals the change in the value of output_scanline.
  517. If you don't use a suspending data source, it is safe to assume that
  518. jpeg_read_scanlines() reads at least one scanline per call, until the
  519. bottom of the image has been reached.
  520. If you use a buffer larger than one scanline, it is NOT safe to assume that
  521. jpeg_read_scanlines() fills it.  (The current implementation won't return
  522. more than cinfo.rec_outbuf_height scanlines per call, no matter how large
  523. a buffer you pass.)  So you must always provide a loop that calls
  524. jpeg_read_scanlines() repeatedly until the whole image has been read.
  525. 7. jpeg_finish_decompress(...);
  526. After all the image data has been read, call jpeg_finish_decompress() to
  527. complete the decompression cycle.  This causes working memory associated
  528. with the JPEG object to be released.
  529. Typical code:
  530. jpeg_finish_decompress(&cinfo);
  531. If using the stdio source manager, don't forget to close the source stdio
  532. stream if necessary.
  533. It is an error to call jpeg_finish_decompress() before reading the correct
  534. total number of scanlines.  If you wish to abort compression, call
  535. jpeg_abort() as discussed below.
  536. After completing a decompression cycle, you may dispose of the JPEG object as
  537. discussed next, or you may use it to decompress another image.  In that case
  538. return to step 2 or 3 as appropriate.  If you do not change the source
  539. manager, the next image will be read from the same source.
  540. 8. Release the JPEG decompression object.
  541. When you are done with a JPEG decompression object, destroy it by calling
  542. jpeg_destroy_decompress() or jpeg_destroy().  The previous discussion of
  543. destroying compression objects applies here too.
  544. Typical code:
  545. jpeg_destroy_decompress(&cinfo);
  546. 9. Aborting.
  547. You can abort a decompression cycle by calling jpeg_destroy_decompress() or
  548. jpeg_destroy() if you don't need the JPEG object any more, or
  549. jpeg_abort_decompress() or jpeg_abort() if you want to reuse the object.
  550. The previous discussion of aborting compression cycles applies here too.
  551. Mechanics of usage: include files, linking, etc
  552. -----------------------------------------------
  553. Applications using the JPEG library should include the header file jpeglib.h
  554. to obtain declarations of data types and routines.  Before including
  555. jpeglib.h, include system headers that define at least the typedefs FILE and
  556. size_t.  On ANSI-conforming systems, including <stdio.h> is sufficient; on
  557. older Unix systems, you may need <sys/types.h> to define size_t.
  558. If the application needs to refer to individual JPEG library error codes, also
  559. include jerror.h to define those symbols.
  560. jpeglib.h indirectly includes the files jconfig.h and jmorecfg.h.  If you are
  561. installing the JPEG header files in a system directory, you will want to
  562. install all four files: jpeglib.h, jerror.h, jconfig.h, jmorecfg.h.
  563. The most convenient way to include the JPEG code into your executable program
  564. is to prepare a library file ("libjpeg.a", or a corresponding name on non-Unix
  565. machines) and reference it at your link step.  If you use only half of the
  566. library (only compression or only decompression), only that much code will be
  567. included from the library, unless your linker is hopelessly brain-damaged.
  568. The supplied makefiles build libjpeg.a automatically (see install.doc).
  569. On some systems your application may need to set up a signal handler to ensure
  570. that temporary files are deleted if the program is interrupted.  This is most
  571. critical if you are on MS-DOS and use the jmemdos.c memory manager back end;
  572. it will try to grab extended memory for temp files, and that space will NOT be
  573. freed automatically.  See cjpeg.c or djpeg.c for an example signal handler.
  574. It may be worth pointing out that the core JPEG library does not actually
  575. require the stdio library: only the default source/destination managers and
  576. error handler need it.  You can use the library in a stdio-less environment
  577. if you replace those modules and use jmemnobs.c (or another memory manager of
  578. your own devising).  More info about the minimum system library requirements
  579. may be found in jinclude.h.
  580. ADVANCED FEATURES
  581. =================
  582. Compression parameter selection
  583. -------------------------------
  584. This section describes all the optional parameters you can set for JPEG
  585. compression, as well as the "helper" routines provided to assist in this
  586. task.  Proper setting of some parameters requires detailed understanding
  587. of the JPEG standard; if you don't know what a parameter is for, it's best
  588. not to mess with it!  See REFERENCES in the README file for pointers to
  589. more info about JPEG.
  590. It's a good idea to call jpeg_set_defaults() first, even if you plan to set
  591. all the parameters; that way your code is more likely to work with future JPEG
  592. libraries that have additional parameters.  For the same reason, we recommend
  593. you use a helper routine where one is provided, in preference to twiddling
  594. cinfo fields directly.
  595. The helper routines are:
  596. jpeg_set_defaults (j_compress_ptr cinfo)
  597. This routine sets all JPEG parameters to reasonable defaults, using
  598. only the input image's color space (field in_color_space, which must
  599. already be set in cinfo).  Many applications will only need to use
  600. this routine and perhaps jpeg_set_quality().
  601. jpeg_set_colorspace (j_compress_ptr cinfo, J_COLOR_SPACE colorspace)
  602. Sets the JPEG file's colorspace (field jpeg_color_space) as specified,
  603. and sets other color-space-dependent parameters appropriately.  See
  604. "Special color spaces", below, before using this.  A large number of
  605. parameters, including all per-component parameters, are set by this
  606. routine; if you want to twiddle individual parameters you should call
  607. jpeg_set_colorspace() before rather than after.
  608. jpeg_default_colorspace (j_compress_ptr cinfo)
  609. Selects an appropriate JPEG colorspace based on cinfo->in_color_space,
  610. and calls jpeg_set_colorspace().  This is actually a subroutine of
  611. jpeg_set_defaults().  It's broken out in case you want to change
  612. just the colorspace-dependent JPEG parameters.
  613. jpeg_set_quality (j_compress_ptr cinfo, int quality, boolean force_baseline)
  614. Constructs JPEG quantization tables appropriate for the indicated
  615. quality setting.  The quality value is expressed on the 0..100 scale
  616. recommended by IJG (cjpeg's "-quality" switch uses this routine).
  617. Note that the exact mapping from quality values to tables may change
  618. in future IJG releases as more is learned about DCT quantization.
  619. If the force_baseline parameter is TRUE, then the quantization table
  620. entries are constrained to the range 1..255 for full JPEG baseline
  621. compatibility.  In the current implementation, this only makes a
  622. difference for quality settings below 25, and it effectively prevents
  623. very small/low quality files from being generated.  The IJG decoder
  624. is capable of reading the non-baseline files generated at low quality
  625. settings when force_baseline is FALSE, but other decoders may not be.
  626. jpeg_set_linear_quality (j_compress_ptr cinfo, int scale_factor,
  627.  boolean force_baseline)
  628. Same as jpeg_set_quality() except that the generated tables are the
  629. sample tables given in the JPEC spec section K.1, multiplied by the
  630. specified scale factor (which is expressed as a percentage; thus
  631. scale_factor = 100 reproduces the spec's tables).  Note that larger
  632. scale factors give lower quality.  This entry point is useful for
  633. conforming to the Adobe PostScript DCT conventions, but we do not
  634. recommend linear scaling as a user-visible quality scale otherwise.
  635. force_baseline again constrains the computed table entries to 1..255.
  636. int jpeg_quality_scaling (int quality)
  637. Converts a value on the IJG-recommended quality scale to a linear
  638. scaling percentage.  Note that this routine may change or go away
  639. in future releases --- IJG may choose to adopt a scaling method that
  640. can't be expressed as a simple scalar multiplier, in which case the
  641. premise of this routine collapses.  Caveat user.
  642. jpeg_add_quant_table (j_compress_ptr cinfo, int which_tbl,
  643.       const unsigned int *basic_table,
  644.       int scale_factor, boolean force_baseline)
  645. Allows an arbitrary quantization table to be created.  which_tbl
  646. indicates which table slot to fill.  basic_table points to an array
  647. of 64 unsigned ints given in normal array order.  These values are
  648. multiplied by scale_factor/100 and then clamped to the range 1..65535
  649. (or to 1..255 if force_baseline is TRUE).
  650. CAUTION: prior to library version 6a, jpeg_add_quant_table expected
  651. the basic table to be given in JPEG zigzag order.  If you need to
  652. write code that works with either older or newer versions of this
  653. routine, you must check the library version number.  Something like
  654. "#if JPEG_LIB_VERSION >= 61" is the right test.
  655. jpeg_simple_progression (j_compress_ptr cinfo)
  656. Generates a default scan script for writing a progressive-JPEG file.
  657. This is the recommended method of creating a progressive file,
  658. unless you want to make a custom scan sequence.  You must ensure that
  659. the JPEG color space is set correctly before calling this routine.
  660. Compression parameters (cinfo fields) include:
  661. J_DCT_METHOD dct_method
  662. Selects the algorithm used for the DCT step.  Choices are:
  663. JDCT_ISLOW: slow but accurate integer algorithm
  664. JDCT_IFAST: faster, less accurate integer method
  665. JDCT_FLOAT: floating-point method
  666. JDCT_DEFAULT: default method (normally JDCT_ISLOW)
  667. JDCT_FASTEST: fastest method (normally JDCT_IFAST)
  668. The FLOAT method is very slightly more accurate than the ISLOW method,
  669. but may give different results on different machines due to varying
  670. roundoff behavior.  The integer methods should give the same results
  671. on all machines.  On machines with sufficiently fast FP hardware, the
  672. floating-point method may also be the fastest.  The IFAST method is
  673. considerably less accurate than the other two; its use is not
  674. recommended if high quality is a concern.  JDCT_DEFAULT and
  675. JDCT_FASTEST are macros configurable by each installation.
  676. J_COLOR_SPACE jpeg_color_space
  677. int num_components
  678. The JPEG color space and corresponding number of components; see
  679. "Special color spaces", below, for more info.  We recommend using
  680. jpeg_set_color_space() if you want to change these.
  681. boolean optimize_coding
  682. TRUE causes the compressor to compute optimal Huffman coding tables
  683. for the image.  This requires an extra pass over the data and
  684. therefore costs a good deal of space and time.  The default is
  685. FALSE, which tells the compressor to use the supplied or default
  686. Huffman tables.  In most cases optimal tables save only a few percent
  687. of file size compared to the default tables.  Note that when this is
  688. TRUE, you need not supply Huffman tables at all, and any you do
  689. supply will be overwritten.
  690. unsigned int restart_interval
  691. int restart_in_rows
  692. To emit restart markers in the JPEG file, set one of these nonzero.
  693. Set restart_interval to specify the exact interval in MCU blocks.
  694. Set restart_in_rows to specify the interval in MCU rows.  (If
  695. restart_in_rows is not 0, then restart_interval is set after the
  696. image width in MCUs is computed.)  Defaults are zero (no restarts).
  697. const jpeg_scan_info * scan_info
  698. int num_scans
  699. By default, scan_info is NULL; this causes the compressor to write a
  700. single-scan sequential JPEG file.  If not NULL, scan_info points to
  701. an array of scan definition records of length num_scans.  The
  702. compressor will then write a JPEG file having one scan for each scan
  703. definition record.  This is used to generate noninterleaved or
  704. progressive JPEG files.  The library checks that the scan array
  705. defines a valid JPEG scan sequence.  (jpeg_simple_progression creates
  706. a suitable scan definition array for progressive JPEG.)  This is
  707. discussed further under "Progressive JPEG support".
  708. int smoothing_factor
  709. If non-zero, the input image is smoothed; the value should be 1 for
  710. minimal smoothing to 100 for maximum smoothing.  Consult jcsample.c
  711. for details of the smoothing algorithm.  The default is zero.
  712. boolean write_JFIF_header
  713. If TRUE, a JFIF APP0 marker is emitted.  jpeg_set_defaults() and
  714. jpeg_set_colorspace() set this TRUE if a JFIF-legal JPEG color space
  715. (ie, YCbCr or grayscale) is selected, otherwise FALSE.
  716. UINT8 density_unit
  717. UINT16 X_density
  718. UINT16 Y_density
  719. The resolution information to be written into the JFIF marker;
  720. not used otherwise.  density_unit may be 0 for unknown,
  721. 1 for dots/inch, or 2 for dots/cm.  The default values are 0,1,1
  722. indicating square pixels of unknown size.
  723. boolean write_Adobe_marker
  724. If TRUE, an Adobe APP14 marker is emitted.  jpeg_set_defaults() and
  725. jpeg_set_colorspace() set this TRUE if JPEG color space RGB, CMYK,
  726. or YCCK is selected, otherwise FALSE.  It is generally a bad idea
  727. to set both write_JFIF_header and write_Adobe_marker.  In fact,
  728. you probably shouldn't change the default settings at all --- the
  729. default behavior ensures that the JPEG file's color space can be
  730. recognized by the decoder.
  731. JQUANT_TBL * quant_tbl_ptrs[NUM_QUANT_TBLS]
  732. Pointers to coefficient quantization tables, one per table slot,
  733. or NULL if no table is defined for a slot.  Usually these should
  734. be set via one of the above helper routines; jpeg_add_quant_table()
  735. is general enough to define any quantization table.  The other
  736. routines will set up table slot 0 for luminance quality and table
  737. slot 1 for chrominance.
  738. JHUFF_TBL * dc_huff_tbl_ptrs[NUM_HUFF_TBLS]
  739. JHUFF_TBL * ac_huff_tbl_ptrs[NUM_HUFF_TBLS]
  740. Pointers to Huffman coding tables, one per table slot, or NULL if
  741. no table is defined for a slot.  Slots 0 and 1 are filled with the
  742. JPEG sample tables by jpeg_set_defaults().  If you need to allocate
  743. more table structures, jpeg_alloc_huff_table() may be used.
  744. Note that optimal Huffman tables can be computed for an image
  745. by setting optimize_coding, as discussed above; there's seldom
  746. any need to mess with providing your own Huffman tables.
  747. There are some additional cinfo fields which are not documented here
  748. because you currently can't change them; for example, you can't set
  749. arith_code TRUE because arithmetic coding is unsupported.
  750. Per-component parameters are stored in the struct cinfo.comp_info[i] for
  751. component number i.  Note that components here refer to components of the
  752. JPEG color space, *not* the source image color space.  A suitably large
  753. comp_info[] array is allocated by jpeg_set_defaults(); if you choose not
  754. to use that routine, it's up to you to allocate the array.
  755. int component_id
  756. The one-byte identifier code to be recorded in the JPEG file for
  757. this component.  For the standard color spaces, we recommend you
  758. leave the default values alone.
  759. int h_samp_factor
  760. int v_samp_factor
  761. Horizontal and vertical sampling factors for the component; must
  762. be 1..4 according to the JPEG standard.  Note that larger sampling
  763. factors indicate a higher-resolution component; many people find
  764. this behavior quite unintuitive.  The default values are 2,2 for
  765. luminance components and 1,1 for chrominance components, except
  766. for grayscale where 1,1 is used.
  767. int quant_tbl_no
  768. Quantization table number for component.  The default value is
  769. 0 for luminance components and 1 for chrominance components.
  770. int dc_tbl_no
  771. int ac_tbl_no
  772. DC and AC entropy coding table numbers.  The default values are
  773. 0 for luminance components and 1 for chrominance components.
  774. int component_index
  775. Must equal the component's index in comp_info[].  (Beginning in
  776. release v6, the compressor library will fill this in automatically;
  777. you don't have to.)
  778. Decompression parameter selection
  779. ---------------------------------
  780. Decompression parameter selection is somewhat simpler than compression
  781. parameter selection, since all of the JPEG internal parameters are
  782. recorded in the source file and need not be supplied by the application.
  783. (Unless you are working with abbreviated files, in which case see
  784. "Abbreviated datastreams", below.)  Decompression parameters control
  785. the postprocessing done on the image to deliver it in a format suitable
  786. for the application's use.  Many of the parameters control speed/quality
  787. tradeoffs, in which faster decompression may be obtained at the price of
  788. a poorer-quality image.  The defaults select the highest quality (slowest)
  789. processing.
  790. The following fields in the JPEG object are set by jpeg_read_header() and
  791. may be useful to the application in choosing decompression parameters:
  792. JDIMENSION image_width Width and height of image
  793. JDIMENSION image_height
  794. int num_components Number of color components
  795. J_COLOR_SPACE jpeg_color_space Colorspace of image
  796. boolean saw_JFIF_marker TRUE if a JFIF APP0 marker was seen
  797.   UINT8 density_unit Resolution data from JFIF marker
  798.   UINT16 X_density
  799.   UINT16 Y_density
  800. boolean saw_Adobe_marker TRUE if an Adobe APP14 marker was seen
  801.   UINT8 Adobe_transform Color transform code from Adobe marker
  802. The JPEG color space, unfortunately, is something of a guess since the JPEG
  803. standard proper does not provide a way to record it.  In practice most files
  804. adhere to the JFIF or Adobe conventions, and the decoder will recognize these
  805. correctly.  See "Special color spaces", below, for more info.
  806. The decompression parameters that determine the basic properties of the
  807. returned image are:
  808. J_COLOR_SPACE out_color_space
  809. Output color space.  jpeg_read_header() sets an appropriate default
  810. based on jpeg_color_space; typically it will be RGB or grayscale.
  811. The application can change this field to request output in a different
  812. colorspace.  For example, set it to JCS_GRAYSCALE to get grayscale
  813. output from a color file.  (This is useful for previewing: grayscale
  814. output is faster than full color since the color components need not
  815. be processed.)  Note that not all possible color space transforms are
  816. currently implemented; you may need to extend jdcolor.c if you want an
  817. unusual conversion.
  818. unsigned int scale_num, scale_denom
  819. Scale the image by the fraction scale_num/scale_denom.  Default is
  820. 1/1, or no scaling.  Currently, the only supported scaling ratios
  821. are 1/1, 1/2, 1/4, and 1/8.  (The library design allows for arbitrary
  822. scaling ratios but this is not likely to be implemented any time soon.)
  823. Smaller scaling ratios permit significantly faster decoding since
  824. fewer pixels need be processed and a simpler IDCT method can be used.
  825. boolean quantize_colors
  826. If set TRUE, colormapped output will be delivered.  Default is FALSE,
  827. meaning that full-color output will be delivered.
  828. The next three parameters are relevant only if quantize_colors is TRUE.
  829. int desired_number_of_colors
  830. Maximum number of colors to use in generating a library-supplied color
  831. map (the actual number of colors is returned in a different field).
  832. Default 256.  Ignored when the application supplies its own color map.
  833. boolean two_pass_quantize
  834. If TRUE, an extra pass over the image is made to select a custom color
  835. map for the image.  This usually looks a lot better than the one-size-
  836. fits-all colormap that is used otherwise.  Default is TRUE.  Ignored
  837. when the application supplies its own color map.
  838. J_DITHER_MODE dither_mode
  839. Selects color dithering method.  Supported values are:
  840. JDITHER_NONE no dithering: fast, very low quality
  841. JDITHER_ORDERED ordered dither: moderate speed and quality
  842. JDITHER_FS Floyd-Steinberg dither: slow, high quality
  843. Default is JDITHER_FS.  (At present, ordered dither is implemented
  844. only in the single-pass, standard-colormap case.  If you ask for
  845. ordered dither when two_pass_quantize is TRUE or when you supply
  846. an external color map, you'll get F-S dithering.)
  847. When quantize_colors is TRUE, the target color map is described by the next
  848. two fields.  colormap is set to NULL by jpeg_read_header().  The application
  849. can supply a color map by setting colormap non-NULL and setting
  850. actual_number_of_colors to the map size.  Otherwise, jpeg_start_decompress()
  851. selects a suitable color map and sets these two fields itself.
  852. [Implementation restriction: at present, an externally supplied colormap is
  853. only accepted for 3-component output color spaces.]
  854. JSAMPARRAY colormap
  855. The color map, represented as a 2-D pixel array of out_color_components
  856. rows and actual_number_of_colors columns.  Ignored if not quantizing.
  857. CAUTION: if the JPEG library creates its own colormap, the storage
  858. pointed to by this field is released by jpeg_finish_decompress().
  859. Copy the colormap somewhere else first, if you want to save it.
  860. int actual_number_of_colors
  861. The number of colors in the color map.
  862. Additional decompression parameters that the application may set include:
  863. J_DCT_METHOD dct_method
  864. Selects the algorithm used for the DCT step.  Choices are the same
  865. as described above for compression.
  866. boolean do_fancy_upsampling
  867. If TRUE, do careful upsampling of chroma components.  If FALSE,
  868. a faster but sloppier method is used.  Default is TRUE.  The visual
  869. impact of the sloppier method is often very small.
  870. boolean do_block_smoothing
  871. If TRUE, interblock smoothing is applied in early stages of decoding
  872. progressive JPEG files; if FALSE, not.  Default is TRUE.  Early
  873. progression stages look "fuzzy" with smoothing, "blocky" without.
  874. In any case, block smoothing ceases to be applied after the first few
  875. AC coefficients are known to full accuracy, so it is relevant only
  876. when using buffered-image mode for progressive images.
  877. boolean enable_1pass_quant
  878. boolean enable_external_quant
  879. boolean enable_2pass_quant
  880. These are significant only in buffered-image mode, which is
  881. described in its own section below.
  882. The output image dimensions are given by the following fields.  These are
  883. computed from the source image dimensions and the decompression parameters
  884. by jpeg_start_decompress().  You can also call jpeg_calc_output_dimensions()
  885. to obtain the values that will result from the current parameter settings.
  886. This can be useful if you are trying to pick a scaling ratio that will get
  887. close to a desired target size.  It's also important if you are using the
  888. JPEG library's memory manager to allocate output buffer space, because you
  889. are supposed to request such buffers *before* jpeg_start_decompress().
  890. JDIMENSION output_width Actual dimensions of output image.
  891. JDIMENSION output_height
  892. int out_color_components Number of color components in out_color_space.
  893. int output_components Number of color components returned.
  894. int rec_outbuf_height Recommended height of scanline buffer.
  895. When quantizing colors, output_components is 1, indicating a single color map
  896. index per pixel.  Otherwise it equals out_color_components.  The output arrays
  897. are required to be output_width * output_components JSAMPLEs wide.
  898. rec_outbuf_height is the recommended minimum height (in scanlines) of the
  899. buffer passed to jpeg_read_scanlines().  If the buffer is smaller, the
  900. library will still work, but time will be wasted due to unnecessary data
  901. copying.  In high-quality modes, rec_outbuf_height is always 1, but some
  902. faster, lower-quality modes set it to larger values (typically 2 to 4).
  903. If you are going to ask for a high-speed processing mode, you may as well
  904. go to the trouble of honoring rec_outbuf_height so as to avoid data copying.
  905. Special color spaces
  906. --------------------
  907. The JPEG standard itself is "color blind" and doesn't specify any particular
  908. color space.  It is customary to convert color data to a luminance/chrominance
  909. color space before compressing, since this permits greater compression.  The
  910. existing de-facto JPEG file format standards specify YCbCr or grayscale data
  911. (JFIF), or grayscale, RGB, YCbCr, CMYK, or YCCK (Adobe).  For special
  912. applications such as multispectral images, other color spaces can be used,
  913. but it must be understood that such files will be unportable.
  914. The JPEG library can handle the most common colorspace conversions (namely
  915. RGB <=> YCbCr and CMYK <=> YCCK).  It can also deal with data of an unknown
  916. color space, passing it through without conversion.  If you deal extensively
  917. with an unusual color space, you can easily extend the library to understand
  918. additional color spaces and perform appropriate conversions.
  919. For compression, the source data's color space is specified by field
  920. in_color_space.  This is transformed to the JPEG file's color space given
  921. by jpeg_color_space.  jpeg_set_defaults() chooses a reasonable JPEG color
  922. space depending on in_color_space, but you can override this by calling
  923. jpeg_set_colorspace().  Of course you must select a supported transformation.
  924. jccolor.c currently supports the following transformations:
  925. RGB => YCbCr
  926. RGB => GRAYSCALE
  927. YCbCr => GRAYSCALE
  928. CMYK => YCCK
  929. plus the null transforms: GRAYSCALE => GRAYSCALE, RGB => RGB,
  930. YCbCr => YCbCr, CMYK => CMYK, YCCK => YCCK, and UNKNOWN => UNKNOWN.
  931. The de-facto file format standards (JFIF and Adobe) specify APPn markers that
  932. indicate the color space of the JPEG file.  It is important to ensure that
  933. these are written correctly, or omitted if the JPEG file's color space is not
  934. one of the ones supported by the de-facto standards.  jpeg_set_colorspace()
  935. will set the compression parameters to include or omit the APPn markers
  936. properly, so long as it is told the truth about the JPEG color space.
  937. For example, if you are writing some random 3-component color space without
  938. conversion, don't try to fake out the library by setting in_color_space and
  939. jpeg_color_space to JCS_YCbCr; use JCS_UNKNOWN.  You may want to write an
  940. APPn marker of your own devising to identify the colorspace --- see "Special
  941. markers", below.
  942. When told that the color space is UNKNOWN, the library will default to using
  943. luminance-quality compression parameters for all color components.  You may
  944. well want to change these parameters.  See the source code for
  945. jpeg_set_colorspace(), in jcparam.c, for details.
  946. For decompression, the JPEG file's color space is given in jpeg_color_space,
  947. and this is transformed to the output color space out_color_space.
  948. jpeg_read_header's setting of jpeg_color_space can be relied on if the file
  949. conforms to JFIF or Adobe conventions, but otherwise it is no better than a
  950. guess.  If you know the JPEG file's color space for certain, you can override
  951. jpeg_read_header's guess by setting jpeg_color_space.  jpeg_read_header also
  952. selects a default output color space based on (its guess of) jpeg_color_space;
  953. set out_color_space to override this.  Again, you must select a supported
  954. transformation.  jdcolor.c currently supports
  955. YCbCr => GRAYSCALE
  956. YCbCr => RGB
  957. YCCK => CMYK
  958. as well as the null transforms.
  959. The two-pass color quantizer, jquant2.c, is specialized to handle RGB data
  960. (it weights distances appropriately for RGB colors).  You'll need to modify
  961. the code if you want to use it for non-RGB output color spaces.  Note that
  962. jquant2.c is used to map to an application-supplied colormap as well as for
  963. the normal two-pass colormap selection process.
  964. CAUTION: it appears that Adobe Photoshop writes inverted data in CMYK JPEG
  965. files: 0 represents 100% ink coverage, rather than 0% ink as you'd expect.
  966. This is arguably a bug in Photoshop, but if you need to work with Photoshop
  967. CMYK files, you will have to deal with it in your application.  We cannot
  968. "fix" this in the library by inverting the data during the CMYK<=>YCCK
  969. transform, because that would break other applications, notably Ghostscript.
  970. Photoshop versions prior to 3.0 write EPS files containing JPEG-encoded CMYK
  971. data in the same inverted-YCCK representation used in bare JPEG files, but
  972. the surrounding PostScript code performs an inversion using the PS image
  973. operator.  I am told that Photoshop 3.0 will write uninverted YCCK in
  974. EPS/JPEG files, and will omit the PS-level inversion.  (But the data
  975. polarity used in bare JPEG files will not change in 3.0.)  In either case,
  976. the JPEG library must not invert the data itself, or else Ghostscript would
  977. read these EPS files incorrectly.
  978. Error handling
  979. --------------
  980. When the default error handler is used, any error detected inside the JPEG
  981. routines will cause a message to be printed on stderr, followed by exit().
  982. You can supply your own error handling routines to override this behavior
  983. and to control the treatment of nonfatal warnings and trace/debug messages.
  984. The file example.c illustrates the most common case, which is to have the
  985. application regain control after an error rather than exiting.
  986. The JPEG library never writes any message directly; it always goes through
  987. the error handling routines.  Three classes of messages are recognized:
  988.   * Fatal errors: the library cannot continue.
  989.   * Warnings: the library can continue, but the data is corrupt, and a
  990.     damaged output image is likely to result.
  991.   * Trace/informational messages.  These come with a trace level indicating
  992.     the importance of the message; you can control the verbosity of the
  993.     program by adjusting the maximum trace level that will be displayed.
  994. You may, if you wish, simply replace the entire JPEG error handling module
  995. (jerror.c) with your own code.  However, you can avoid code duplication by
  996. only replacing some of the routines depending on the behavior you need.
  997. This is accomplished by calling jpeg_std_error() as usual, but then overriding
  998. some of the method pointers in the jpeg_error_mgr struct, as illustrated by
  999. example.c.
  1000. All of the error handling routines will receive a pointer to the JPEG object
  1001. (a j_common_ptr which points to either a jpeg_compress_struct or a
  1002. jpeg_decompress_struct; if you need to tell which, test the is_decompressor
  1003. field).  This struct includes a pointer to the error manager struct in its
  1004. "err" field.  Frequently, custom error handler routines will need to access
  1005. additional data which is not known to the JPEG library or the standard error
  1006. handler.  The most convenient way to do this is to embed either the JPEG
  1007. object or the jpeg_error_mgr struct in a larger structure that contains
  1008. additional fields; then casting the passed pointer provides access to the
  1009. additional fields.  Again, see example.c for one way to do it.
  1010. The individual methods that you might wish to override are:
  1011. error_exit (j_common_ptr cinfo)
  1012. Receives control for a fatal error.  Information sufficient to
  1013. generate the error message has been stored in cinfo->err; call
  1014. output_message to display it.  Control must NOT return to the caller;
  1015. generally this routine will exit() or longjmp() somewhere.
  1016. Typically you would override this routine to get rid of the exit()
  1017. default behavior.  Note that if you continue processing, you should
  1018. clean up the JPEG object with jpeg_abort() or jpeg_destroy().
  1019. output_message (j_common_ptr cinfo)
  1020. Actual output of any JPEG message.  Override this to send messages
  1021. somewhere other than stderr.  Note that this method does not know
  1022. how to generate a message, only where to send it.
  1023. format_message (j_common_ptr cinfo, char * buffer)
  1024. Constructs a readable error message string based on the error info
  1025. stored in cinfo->err.  This method is called by output_message.  Few
  1026. applications should need to override this method.  One possible
  1027. reason for doing so is to implement dynamic switching of error message
  1028. language.
  1029. emit_message (j_common_ptr cinfo, int msg_level)
  1030. Decide whether or not to emit a warning or trace message; if so,
  1031. calls output_message.  The main reason for overriding this method
  1032. would be to abort on warnings.  msg_level is -1 for warnings,
  1033. 0 and up for trace messages.
  1034. Only error_exit() and emit_message() are called from the rest of the JPEG
  1035. library; the other two are internal to the error handler.
  1036. The actual message texts are stored in an array of strings which is pointed to
  1037. by the field err->jpeg_message_table.  The messages are numbered from 0 to
  1038. err->last_jpeg_message, and it is these code numbers that are used in the
  1039. JPEG library code.  You could replace the message texts (for instance, with
  1040. messages in French or German) by changing the message table pointer.  See
  1041. jerror.h for the default texts.  CAUTION: this table will almost certainly
  1042. change or grow from one library version to the next.
  1043. It may be useful for an application to add its own message texts that are
  1044. handled by the same mechanism.  The error handler supports a second "add-on"
  1045. message table for this purpose.  To define an addon table, set the pointer
  1046. err->addon_message_table and the message numbers err->first_addon_message and
  1047. err->last_addon_message.  If you number the addon messages beginning at 1000
  1048. or so, you won't have to worry about conflicts with the library's built-in
  1049. messages.  See the sample applications cjpeg/djpeg for an example of using
  1050. addon messages (the addon messages are defined in cderror.h).
  1051. Actual invocation of the error handler is done via macros defined in jerror.h:
  1052. ERREXITn(...) for fatal errors
  1053. WARNMSn(...) for corrupt-data warnings
  1054. TRACEMSn(...) for trace and informational messages.
  1055. These macros store the message code and any additional parameters into the
  1056. error handler struct, then invoke the error_exit() or emit_message() method.
  1057. The variants of each macro are for varying numbers of additional parameters.
  1058. The additional parameters are inserted into the generated message using
  1059. standard printf() format codes.
  1060. See jerror.h and jerror.c for further details.
  1061. Compressed data handling (source and destination managers)
  1062. ----------------------------------------------------------
  1063. The JPEG compression library sends its compressed data to a "destination
  1064. manager" module.  The default destination manager just writes the data to a
  1065. stdio stream, but you can provide your own manager to do something else.
  1066. Similarly, the decompression library calls a "source manager" to obtain the
  1067. compressed data; you can provide your own source manager if you want the data
  1068. to come from somewhere other than a stdio stream.
  1069. In both cases, compressed data is processed a bufferload at a time: the
  1070. destination or source manager provides a work buffer, and the library invokes
  1071. the manager only when the buffer is filled or emptied.  (You could define a
  1072. one-character buffer to force the manager to be invoked for each byte, but
  1073. that would be rather inefficient.)  The buffer's size and location are
  1074. controlled by the manager, not by the library.  For example, if you desired to
  1075. decompress a JPEG datastream that was all in memory, you could just make the
  1076. buffer pointer and length point to the original data in memory.  Then the
  1077. buffer-reload procedure would be invoked only if the decompressor ran off the
  1078. end of the datastream, which would indicate an erroneous datastream.
  1079. The work buffer is defined as an array of datatype JOCTET, which is generally
  1080. "char" or "unsigned char".  On a machine where char is not exactly 8 bits
  1081. wide, you must define JOCTET as a wider data type and then modify the data
  1082. source and destination modules to transcribe the work arrays into 8-bit units
  1083. on external storage.
  1084. A data destination manager struct contains a pointer and count defining the
  1085. next byte to write in the work buffer and the remaining free space:
  1086. JOCTET * next_output_byte;  /* => next byte to write in buffer */
  1087. size_t free_in_buffer;      /* # of byte spaces remaining in buffer */
  1088. The library increments the pointer and decrements the count until the buffer
  1089. is filled.  The manager's empty_output_buffer method must reset the pointer
  1090. and count.  The manager is expected to remember the buffer's starting address
  1091. and total size in private fields not visible to the library.
  1092. A data destination manager provides three methods:
  1093. init_destination (j_compress_ptr cinfo)
  1094. Initialize destination.  This is called by jpeg_start_compress()
  1095. before any data is actually written.  It must initialize
  1096. next_output_byte and free_in_buffer.  free_in_buffer must be
  1097. initialized to a positive value.
  1098. empty_output_buffer (j_compress_ptr cinfo)
  1099. This is called whenever the buffer has filled (free_in_buffer
  1100. reaches zero).  In typical applications, it should write out the
  1101. *entire* buffer (use the saved start address and buffer length;
  1102. ignore the current state of next_output_byte and free_in_buffer).
  1103. Then reset the pointer & count to the start of the buffer, and
  1104. return TRUE indicating that the buffer has been dumped.
  1105. free_in_buffer must be set to a positive value when TRUE is
  1106. returned.  A FALSE return should only be used when I/O suspension is
  1107. desired (this operating mode is discussed in the next section).