home *** CD-ROM | disk | FTP | other *** search
/ Encyclopedia of Graphics File Formats Companion / GFF_CD.ISO / software / unix / jpeg / jpegv4a.tar / USAGE < prev   
Text File  |  1993-02-17  |  15KB  |  309 lines

  1. USAGE instructions for the Independent JPEG Group's JPEG software
  2. =================================================================
  3.  
  4. INTRODUCTION
  5.  
  6. This distribution contains software to implement JPEG image compression and
  7. decompression.  JPEG (pronounced "jay-peg") is a standardized compression
  8. method for full-color and gray-scale images.  JPEG is designed to handle
  9. "real-world" scenes, for example scanned photographs.  Cartoons, line
  10. drawings, and other non-realistic images are not JPEG's strong suit; on this
  11. sort of material you may get poor image quality and/or little compression.
  12.  
  13. JPEG is lossy, meaning that the output image is not necessarily identical to
  14. the input image.  Hence you should not use JPEG if you have to have identical
  15. output bits.  However, on typical real-world images, very good compression
  16. levels can be obtained with no visible change, and amazingly high compression
  17. is possible if you can tolerate a low-quality image.  You can trade off image
  18. quality against file size by adjusting the compressor's "quality" setting.
  19.  
  20. This file describes usage of the standard programs "cjpeg" and "djpeg" that
  21. can be built directly from the distributed C code.  See the README file for
  22. hints on incorporating the JPEG software into other programs.
  23.  
  24. If you are on a Unix machine you may prefer to read the Unix-style manual
  25. pages in files cjpeg.1 and djpeg.1.  But also see the HINTS section below,
  26. which is not present in either manual page.
  27.  
  28. NOTE: the switch syntax has been redesigned since the v3 release of
  29. cjpeg/djpeg.  Switch names are now words instead of single letters.
  30.  
  31.  
  32. GENERAL USAGE
  33.  
  34. We provide two programs, cjpeg to compress an image file into JPEG format,
  35. and djpeg to decompress a JPEG file back into a conventional image format.
  36.  
  37. On Unix-like systems, you say:
  38.     cjpeg [switches] [imagefile] >jpegfile
  39. or
  40.     djpeg [switches] [jpegfile]  >imagefile
  41. The programs read the specified input file, or standard input if none is
  42. named.  They always write to standard output (with trace/error messages to
  43. standard error).  These conventions are handy for piping images between
  44. programs.
  45.  
  46. On most non-Unix systems, you say:
  47.     cjpeg [switches] imagefile jpegfile
  48. or
  49.     djpeg [switches] jpegfile  imagefile
  50. i.e., both the input and output files are named on the command line.  This
  51. style is a little more foolproof, and it loses no functionality if you don't
  52. have pipes.  (You can get this style on Unix too, if you prefer, by defining
  53. TWO_FILE_COMMANDLINE when you compile the programs; see SETUP.)
  54.  
  55. You can also say:
  56.     cjpeg [switches] -outfile jpegfile  imagefile
  57. or
  58.     djpeg [switches] -outfile imagefile  jpegfile
  59. This syntax works on all systems, so it is useful for scripts.
  60.  
  61. The currently supported image file formats are: PPM (PBMPLUS color format),
  62. PGM (PBMPLUS gray-scale format), GIF, Targa, and RLE (Utah Raster Toolkit
  63. format).  (RLE is supported only if the URT library is available.)
  64. cjpeg recognizes the input image format automatically, with the exception
  65. of some Targa-format files.  You have to tell djpeg which format to generate.
  66.  
  67. The only JPEG file format currently supported is the JFIF format.  Support for
  68. the TIFF 6.0 JPEG format will probably be added at some future date.
  69.  
  70. All switch names may be abbreviated; for example, -grayscale may be written
  71. -gray or -gr.  Most of the "basic" switches can be abbreviated to as little as
  72. one letter.  Upper and lower case are equivalent (-GIF is the same as -gif).
  73. British spellings are also accepted (e.g., -greyscale), though for brevity
  74. these are not mentioned below.
  75.  
  76.  
  77. CJPEG DETAILS
  78.  
  79. The basic command line switches for cjpeg are:
  80.  
  81.     -quality N    Scale quantization tables to adjust image quality.
  82.             Quality is 0 (worst) to 100 (best); default is 75.
  83.             (See below for more info.)
  84.  
  85.     -grayscale    Create monochrome JPEG file from color input.
  86.             Be sure to use this switch when compressing a grayscale
  87.             GIF file, because cjpeg isn't bright enough to notice
  88.             whether a GIF file uses only shades of gray.  By
  89.             saying -grayscale, you'll get a smaller JPEG file that
  90.             takes less time to process.
  91.  
  92.     -optimize    Perform optimization of entropy encoding parameters.
  93.             Without this, default encoding parameters are used.
  94.             -optimize usually makes the JPEG file a little smaller,
  95.             but cjpeg runs somewhat slower and needs much more
  96.             memory.  Image quality and speed of decompression are
  97.             unaffected by -optimize.
  98.  
  99.     -targa        Input file is Targa format.  Targa files that contain
  100.             an "identification" field will not be automatically
  101.             recognized by cjpeg; for such files you must specify
  102.             -targa to make cjpeg treat the input as Targa format.
  103.  
  104. The -quality switch lets you trade off compressed file size against quality of
  105. the reconstructed image: the higher the quality setting, the larger the JPEG
  106. file, and the closer the output image will be to the original input.  Normally
  107. you want to use the lowest quality setting (smallest file) that decompresses
  108. into something visually indistinguishable from the original image.  For this
  109. purpose the quality setting should be between 50 and 95; the default of 75 is
  110. often about right.  If you see defects at -quality 75, then go up 5 or 10
  111. counts at a time until you are happy with the output image.  (The optimal
  112. setting will vary from one image to another.)
  113.  
  114. -quality 100 will generate a quantization table of all 1's, eliminating loss
  115. in the quantization step (but there is still information loss in subsampling,
  116. as well as roundoff error).  This setting is mainly of interest for
  117. experimental purposes.  Quality values above about 95 are NOT recommended for
  118. normal use; the compressed file size goes up dramatically for hardly any gain
  119. in output image quality.
  120.  
  121. In the other direction, quality values below 50 will produce very small files
  122. of low image quality.  Settings around 5 to 10 might be useful in preparing an
  123. index of a large image library, for example.  Try -quality 2 (or so) for some
  124. amusing Cubist effects.  (Note: quality values below about 25 generate 2-byte
  125. quantization tables, which are considered optional in the JPEG standard.
  126. cjpeg emits a warning message when you give such a quality value, because
  127. some commercial JPEG programs may be unable to decode the resulting file.)
  128.  
  129. Switches for advanced users:
  130.  
  131.     -maxmemory N    Set limit for amount of memory to use in processing
  132.             large images.  Value is in thousands of bytes, or
  133.             millions of bytes if "M" is attached to the number.
  134.             For example, -max 4m selects 4000000 bytes.  If more
  135.             space is needed, temporary files will be used.
  136.  
  137.     -restart N    Emit a JPEG restart marker every N MCU rows, or every
  138.             N MCU blocks if "B" is attached to the number.
  139.             -restart 0 (the default) means no restart markers.
  140.  
  141.     -smooth N    Smooth the input image to eliminate dithering noise.
  142.             N, ranging from 1 to 100, indicates the strength of
  143.             smoothing.  0 (the default) means no smoothing.
  144.  
  145.     -verbose    Enable debug printout.  More -v's give more printout.
  146.     or  -debug    Also, version information is printed at startup.
  147.  
  148. The -restart option inserts extra markers that allow a JPEG decoder to
  149. resynchronize after a transmission error.  Without restart markers, any damage
  150. to a compressed file will usually ruin the image from the point of the error
  151. to the end of the image; with restart markers, the damage is usually confined
  152. to the portion of the image up to the next restart marker.  Of course, the
  153. restart markers occupy extra space.  We recommend -restart 1 for images that
  154. will be transmitted across unreliable networks such as Usenet.
  155.  
  156. The -smooth option filters the input to eliminate fine-scale noise.  This is
  157. often useful when converting GIF files to JPEG: a moderate smoothing factor of
  158. 10 to 50 gets rid of dithering patterns in the input file, resulting in a
  159. smaller JPEG file and a better-looking image.  Too large a smoothing factor
  160. will visibly blur the image, however.
  161.  
  162. Switches for wizards:
  163.  
  164.     -arithmetic    Use arithmetic coding rather than Huffman coding.
  165.             (Not currently supported for legal reasons.)
  166.  
  167.     -nointerleave    Generate noninterleaved JPEG file (not yet supported).
  168.  
  169.     -qtables file    Use the quantization tables given in the specified
  170.             file.  The file should contain one to four tables
  171.             (64 values each) as plain text.  Comments preceded by
  172.             '#' may be included in the file.  The tables are
  173.             implicitly numbered 0,1,etc.  If -quality N is also
  174.             specified, the values in the file are scaled according
  175.             to cjpeg's quality scaling curve.
  176.  
  177.     -sample HxV[,...]    Set JPEG sampling factors.  If you specify
  178.             fewer H/V pairs than there are components, the
  179.             remaining components are set to 1x1 sampling.  The
  180.             default setting is equivalent to "-sample 2x2".
  181.  
  182. The "wizard" switches are intended for experimentation with JPEG.  If you
  183. don't know what you are doing, DON'T USE THEM.  You can easily produce files
  184. with worse image quality and/or poorer compression than you'll get from the
  185. default settings.  Furthermore, these switches should not be used when making
  186. files intended for general use, because not all JPEG implementations will
  187. support unusual JPEG parameter settings.
  188.  
  189.  
  190. DJPEG DETAILS
  191.  
  192. The basic command line switches for djpeg are:
  193.  
  194.     -colors N    Reduce image to at most N colors.  This reduces the
  195.     or -quantize N    number of colors used in the output image, so that it
  196.             can be displayed on a colormapped display or stored in
  197.             a colormapped file format.  For example, if you have
  198.             an 8-bit display, you'd need to reduce to 256 or fewer
  199.             colors.  (-colors is the recommended name, -quantize
  200.             is provided only for backwards compatibility.)
  201.  
  202.     -gif        Select GIF output format.  Since GIF does not support
  203.             more than 256 colors, -colors 256 is assumed (unless
  204.             you specify a smaller number of colors).
  205.  
  206.     -pnm        Select PBMPLUS (PPM/PGM) output format (this is the
  207.             default format).  PGM is emitted if the JPEG file is
  208.             gray-scale or if -grayscale is specified; otherwise
  209.             PPM is emitted.
  210.  
  211.     -rle        Select RLE output format.  (Requires URT library.)
  212.  
  213.     -targa        Select Targa output format.  Gray-scale format is
  214.             emitted if the JPEG file is gray-scale or if
  215.             -grayscale is specified; otherwise, colormapped format
  216.             is emitted if -colors is specified; otherwise, 24-bit
  217.             full-color format is emitted.
  218.  
  219. Switches for advanced users:
  220.  
  221.     -blocksmooth    Perform cross-block smoothing.  This is slow, quite
  222.             memory-intensive, and only seems to improve the image
  223.             at very low quality settings (-quality 10 to 20 or so).
  224.             At normal quality settings it may make things worse.
  225.  
  226.     -grayscale    Force gray-scale output even if JPEG file is color.
  227.             Useful for viewing on monochrome displays.
  228.  
  229.     -maxmemory N    Set limit for amount of memory to use in processing
  230.             large images.  Value is in thousands of bytes, or
  231.             millions of bytes if "M" is attached to the number.
  232.             For example, -max 4m selects 4000000 bytes.  If more
  233.             space is needed, temporary files will be used.
  234.  
  235.     -nodither    Do not use dithering in color quantization.
  236.             By default, Floyd-Steinberg dithering is applied when
  237.             quantizing colors, but on some images dithering may
  238.             result in objectionable "graininess".  If that
  239.             happens, you can turn off dithering with -nodither.
  240.             -nodither is ignored unless you also say -colors N.
  241.  
  242.     -onepass    Use one-pass instead of two-pass color quantization.
  243.             The one-pass method is faster and needs less memory,
  244.             but it produces a lower-quality image.  -onepass is
  245.             ignored unless you also say -colors N.  Also,
  246.             the one-pass method is always used for gray-scale
  247.             output (the two-pass method is no improvement then).
  248.  
  249.     -verbose    Enable debug printout.  More -v's give more printout.
  250.     or  -debug    Also, version information is printed at startup.
  251.  
  252.  
  253. HINTS
  254.  
  255. Color GIF files are not the ideal input for JPEG; JPEG is really intended for
  256. compressing full-color (24-bit) images.  In particular, don't try to convert
  257. cartoons, line drawings, and other images that have only a few distinct
  258. colors.  GIF works great on these, JPEG does not.  If you want to convert a
  259. GIF to JPEG, you should experiment with cjpeg's -quality and -smooth options
  260. to get a satisfactory conversion.  -smooth 10 or so is often helpful.
  261.  
  262. Avoid running an image through a series of JPEG compression/decompression
  263. cycles.  Image quality loss will accumulate; after ten or so cycles the image
  264. may be noticeably worse than it was after one cycle.  It's best to use a
  265. lossless format while manipulating an image, then convert to JPEG format when
  266. you are ready to file the image away.
  267.  
  268. The -optimize option to cjpeg is worth using when you are making a "final"
  269. version for posting or archiving.  It's also a win when you are using low
  270. quality settings to make very small JPEG files; the percentage improvement
  271. is often a lot more than it is on larger files.
  272.  
  273. When making images to be posted on Usenet, we recommend using cjpeg's option
  274. -restart 1.  This option limits the damage done to a compressed image by
  275. netnews transmission errors.
  276.  
  277. The default memory usage limit (-maxmemory) is set when the software is
  278. compiled.  If you get an "insufficient memory" error, try specifying a smaller
  279. -maxmemory value, even -maxmemory 0 to use the absolute minimum space.  You
  280. may want to recompile with a smaller default value if this happens often.
  281.  
  282. On machines that have "environment" variables, you can define the environment
  283. variable JPEGMEM to set the default memory limit.  The value is specified as
  284. described for the -maxmemory switch.  JPEGMEM overrides the default value
  285. specified when the program was compiled, and itself is overridden by an
  286. explicit -maxmemory switch.
  287.  
  288. On MS-DOS machines, -maxmemory is the amount of main (conventional) memory to
  289. use.  (Extended or expanded memory is also used if available.)  Most
  290. DOS-specific versions of this software do their own memory space estimation
  291. and do not need -maxmemory.
  292.  
  293. djpeg with two-pass color quantization requires a good deal of memory; on
  294. MS-DOS machines it may run out of memory even with -maxmemory 0.  In that case
  295. you can still decompress, with some loss of image quality, by specifying
  296. -onepass for one-pass quantization.
  297.  
  298. If more space is needed than will fit in the available main memory (as
  299. determined by -maxmemory), temporary files will be used.  (MS-DOS versions
  300. will try to get extended or expanded memory first.)  The temporary files are
  301. often rather large: in typical cases they occupy three bytes per pixel, for
  302. example 3*800*600 = 1.44Mb for an 800x600 image.  If you don't have enough
  303. free disk space, leave out -optimize (for cjpeg) or specify -onepass (for
  304. djpeg).  On MS-DOS, the temporary files are created in the directory named by
  305. the TMP or TEMP environment variable, or in the current directory if neither
  306. of those exist.  Amiga implementations put the temp files in the directory
  307. named by JPEGTMP:, so be sure to assign JPEGTMP: to a disk partition with
  308. adequate free space.
  309.