cjpeg.1 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388
  1. .TH CJPEG 1 "26 July 2015"
  2. .SH NAME
  3. cjpeg \- compress an image file to a JPEG file
  4. .SH SYNOPSIS
  5. .B cjpeg
  6. [
  7. .I options
  8. ]
  9. [
  10. .I filename
  11. ]
  12. .LP
  13. .SH DESCRIPTION
  14. .LP
  15. .B cjpeg
  16. compresses the named image file, or the standard input if no file is
  17. named, and produces a JPEG/JFIF file on the standard output.
  18. The currently supported input file formats are: PPM (PBMPLUS color
  19. format), PGM (PBMPLUS grayscale format), BMP, Targa, and RLE (Utah Raster
  20. Toolkit format). (RLE is supported only if the URT library is available.)
  21. .SH OPTIONS
  22. All switch names may be abbreviated; for example,
  23. .B \-grayscale
  24. may be written
  25. .B \-gray
  26. or
  27. .BR \-gr .
  28. Most of the "basic" switches can be abbreviated to as little as one letter.
  29. Upper and lower case are equivalent (thus
  30. .B \-BMP
  31. is the same as
  32. .BR \-bmp ).
  33. British spellings are also accepted (e.g.,
  34. .BR \-greyscale ),
  35. though for brevity these are not mentioned below.
  36. .PP
  37. The basic switches are:
  38. .TP
  39. .BI \-quality " N[,...]"
  40. Scale quantization tables to adjust image quality. Quality is 0 (worst) to
  41. 100 (best); default is 75. (See below for more info.)
  42. .TP
  43. .B \-grayscale
  44. Create monochrome JPEG file from color input. Be sure to use this switch when
  45. compressing a grayscale BMP file, because
  46. .B cjpeg
  47. isn't bright enough to notice whether a BMP file uses only shades of gray.
  48. By saying
  49. .BR \-grayscale ,
  50. you'll get a smaller JPEG file that takes less time to process.
  51. .TP
  52. .B \-rgb
  53. Create RGB JPEG file.
  54. Using this switch suppresses the conversion from RGB
  55. colorspace input to the default YCbCr JPEG colorspace.
  56. You can use this switch in combination with the
  57. .BI \-block " N"
  58. switch (see below) for lossless JPEG coding.
  59. See also the
  60. .B \-rgb1
  61. switch below.
  62. .TP
  63. .B \-optimize
  64. Perform optimization of entropy encoding parameters. Without this, default
  65. encoding parameters are used.
  66. .B \-optimize
  67. usually makes the JPEG file a little smaller, but
  68. .B cjpeg
  69. runs somewhat slower and needs much more memory. Image quality and speed of
  70. decompression are unaffected by
  71. .BR \-optimize .
  72. .TP
  73. .B \-progressive
  74. Create progressive JPEG file (see below).
  75. .TP
  76. .BI \-scale " M/N"
  77. Scale the output image by a factor M/N. Currently supported scale factors are
  78. M/N with all N from 1 to 16, where M is the destination DCT size, which is 8
  79. by default (see
  80. .BI \-block " N"
  81. switch below).
  82. .TP
  83. .B \-targa
  84. Input file is Targa format. Targa files that contain an "identification"
  85. field will not be automatically recognized by
  86. .BR cjpeg ;
  87. for such files you must specify
  88. .B \-targa
  89. to make
  90. .B cjpeg
  91. treat the input as Targa format.
  92. For most Targa files, you won't need this switch.
  93. .PP
  94. The
  95. .B \-quality
  96. switch lets you trade off compressed file size against quality of the
  97. reconstructed image: the higher the quality setting, the larger the JPEG file,
  98. and the closer the output image will be to the original input. Normally you
  99. want to use the lowest quality setting (smallest file) that decompresses into
  100. something visually indistinguishable from the original image. For this
  101. purpose the quality setting should be between 50 and 95; the default of 75 is
  102. often about right. If you see defects at
  103. .B \-quality
  104. 75, then go up 5 or 10 counts at a time until you are happy with the output
  105. image. (The optimal setting will vary from one image to another.)
  106. .PP
  107. .B \-quality
  108. 100 will generate a quantization table of all 1's, minimizing loss in the
  109. quantization step (but there is still information loss in subsampling, as well
  110. as roundoff error). This setting is mainly of interest for experimental
  111. purposes. Quality values above about 95 are
  112. .B not
  113. recommended for normal use; the compressed file size goes up dramatically for
  114. hardly any gain in output image quality.
  115. .PP
  116. In the other direction, quality values below 50 will produce very small files
  117. of low image quality. Settings around 5 to 10 might be useful in preparing an
  118. index of a large image library, for example. Try
  119. .B \-quality
  120. 2 (or so) for some amusing Cubist effects. (Note: quality
  121. values below about 25 generate 2-byte quantization tables, which are
  122. considered optional in the JPEG standard.
  123. .B cjpeg
  124. emits a warning message when you give such a quality value, because some
  125. other JPEG programs may be unable to decode the resulting file. Use
  126. .B \-baseline
  127. if you need to ensure compatibility at low quality values.)
  128. .PP
  129. The
  130. .B \-quality
  131. option has been extended in IJG version 7 for support of separate quality
  132. settings for luminance and chrominance (or in general, for every provided
  133. quantization table slot). This feature is useful for high-quality
  134. applications which cannot accept the damage of color data by coarse
  135. subsampling settings. You can now easily reduce the color data amount more
  136. smoothly with finer control without separate subsampling. The resulting file
  137. is fully compliant with standard JPEG decoders.
  138. Note that the
  139. .B \-quality
  140. ratings refer to the quantization table slots, and that the last value is
  141. replicated if there are more q-table slots than parameters. The default
  142. q-table slots are 0 for luminance and 1 for chrominance with default tables as
  143. given in the JPEG standard. This is compatible with the old behaviour in case
  144. that only one parameter is given, which is then used for both luminance and
  145. chrominance (slots 0 and 1). More or custom quantization tables can be set
  146. with
  147. .B \-qtables
  148. and assigned to components with
  149. .B \-qslots
  150. parameter (see the "wizard" switches below).
  151. .B Caution:
  152. You must explicitly add
  153. .BI \-sample " 1x1"
  154. for efficient separate color
  155. quality selection, since the default value used by library is 2x2!
  156. .PP
  157. The
  158. .B \-progressive
  159. switch creates a "progressive JPEG" file. In this type of JPEG file, the data
  160. is stored in multiple scans of increasing quality. If the file is being
  161. transmitted over a slow communications link, the decoder can use the first
  162. scan to display a low-quality image very quickly, and can then improve the
  163. display with each subsequent scan. The final image is exactly equivalent to a
  164. standard JPEG file of the same quality setting, and the total file size is
  165. about the same --- often a little smaller.
  166. .PP
  167. Switches for advanced users:
  168. .TP
  169. .B \-arithmetic
  170. Use arithmetic coding.
  171. .B Caution:
  172. arithmetic coded JPEG is not yet widely implemented, so many decoders will
  173. be unable to view an arithmetic coded JPEG file at all.
  174. .TP
  175. .BI \-block " N"
  176. Set DCT block size. All N from 1 to 16 are possible.
  177. Default is 8 (baseline format).
  178. Larger values produce higher compression,
  179. smaller values produce higher quality
  180. (exact DCT stage possible with 1 or 2; with the default quality of 75 and
  181. default Luminance qtable the DCT+Quantization stage is lossless for N=1).
  182. .B Caution:
  183. An implementation of the JPEG SmartScale extension is required for this
  184. feature. SmartScale enabled JPEG is not yet widely implemented, so many
  185. decoders will be unable to view a SmartScale extended JPEG file at all.
  186. .TP
  187. .B \-rgb1
  188. Create RGB JPEG file with reversible color transform.
  189. Works like the
  190. .B \-rgb
  191. switch (see above) and inserts a simple reversible color transform
  192. into the processing which significantly improves the compression.
  193. Use this switch in combination with the
  194. .BI \-block " N"
  195. switch (see above) for lossless JPEG coding.
  196. .B Caution:
  197. A decoder with inverse color transform support is required for
  198. this feature. Reversible color transform support is not yet
  199. widely implemented, so many decoders will be unable to view
  200. a reversible color transformed JPEG file at all.
  201. .TP
  202. .B \-bgycc
  203. Create big gamut YCC JPEG file.
  204. In this type of encoding the color difference components are quantized
  205. further by a factor of 2 compared to the normal Cb/Cr values, thus creating
  206. space to allow larger color values with higher saturation than the normal
  207. gamut limits to be encoded. In order to compensate for the loss of color
  208. fidelity compared to a normal YCC encoded file, the color quantization
  209. tables can be adjusted accordingly. For example,
  210. .B cjpeg \-bgycc \-quality
  211. 80,90 will give similar results as
  212. .B cjpeg \-quality
  213. 80.
  214. .B Caution:
  215. For correct decompression a decoder with big gamut YCC support (JFIF
  216. version 2) is required. An old decoder may or may not display a big
  217. gamut YCC encoded JPEG file, depending on JFIF version check and
  218. corresponding warning/error configuration. In case of a granted
  219. decompression the old decoder will display the image with half
  220. saturated colors.
  221. .TP
  222. .B \-dct int
  223. Use integer DCT method (default).
  224. .TP
  225. .B \-dct fast
  226. Use fast integer DCT (less accurate).
  227. .TP
  228. .B \-dct float
  229. Use floating-point DCT method.
  230. The float method is very slightly more accurate than the int method, but is
  231. much slower unless your machine has very fast floating-point hardware. Also
  232. note that results of the floating-point method may vary slightly across
  233. machines, while the integer methods should give the same results everywhere.
  234. The fast integer method is much less accurate than the other two.
  235. .TP
  236. .B \-nosmooth
  237. Don't use high-quality downsampling.
  238. .TP
  239. .BI \-restart " N"
  240. Emit a JPEG restart marker every N MCU rows, or every N MCU blocks if "B" is
  241. attached to the number.
  242. .B \-restart 0
  243. (the default) means no restart markers.
  244. .TP
  245. .BI \-smooth " N"
  246. Smooth the input image to eliminate dithering noise. N, ranging from 1 to
  247. 100, indicates the strength of smoothing. 0 (the default) means no smoothing.
  248. .TP
  249. .BI \-maxmemory " N"
  250. Set limit for amount of memory to use in processing large images. Value is
  251. in thousands of bytes, or millions of bytes if "M" is attached to the
  252. number. For example,
  253. .B \-max 4m
  254. selects 4000000 bytes. If more space is needed, temporary files will be used.
  255. .TP
  256. .BI \-outfile " name"
  257. Send output image to the named file, not to standard output.
  258. .TP
  259. .B \-verbose
  260. Enable debug printout. More
  261. .BR \-v 's
  262. give more output. Also, version information is printed at startup.
  263. .TP
  264. .B \-debug
  265. Same as
  266. .BR \-verbose .
  267. .PP
  268. The
  269. .B \-restart
  270. option inserts extra markers that allow a JPEG decoder to resynchronize after
  271. a transmission error. Without restart markers, any damage to a compressed
  272. file will usually ruin the image from the point of the error to the end of the
  273. image; with restart markers, the damage is usually confined to the portion of
  274. the image up to the next restart marker. Of course, the restart markers
  275. occupy extra space. We recommend
  276. .B \-restart 1
  277. for images that will be transmitted across unreliable networks such as Usenet.
  278. .PP
  279. The
  280. .B \-smooth
  281. option filters the input to eliminate fine-scale noise. This is often useful
  282. when converting dithered images to JPEG: a moderate smoothing factor of 10 to
  283. 50 gets rid of dithering patterns in the input file, resulting in a smaller
  284. JPEG file and a better-looking image. Too large a smoothing factor will
  285. visibly blur the image, however.
  286. .PP
  287. Switches for wizards:
  288. .TP
  289. .B \-baseline
  290. Force baseline-compatible quantization tables to be generated. This clamps
  291. quantization values to 8 bits even at low quality settings. (This switch is
  292. poorly named, since it does not ensure that the output is actually baseline
  293. JPEG. For example, you can use
  294. .B \-baseline
  295. and
  296. .B \-progressive
  297. together.)
  298. .TP
  299. .BI \-qtables " file"
  300. Use the quantization tables given in the specified text file.
  301. .TP
  302. .BI \-qslots " N[,...]"
  303. Select which quantization table to use for each color component.
  304. .TP
  305. .BI \-sample " HxV[,...]"
  306. Set JPEG sampling factors for each color component.
  307. .TP
  308. .BI \-scans " file"
  309. Use the scan script given in the specified text file.
  310. .PP
  311. The "wizard" switches are intended for experimentation with JPEG. If you
  312. don't know what you are doing, \fBdon't use them\fR. These switches are
  313. documented further in the file wizard.txt.
  314. .SH EXAMPLES
  315. .LP
  316. This example compresses the PPM file foo.ppm with a quality factor of
  317. 60 and saves the output as foo.jpg:
  318. .IP
  319. .B cjpeg \-quality
  320. .I 60 foo.ppm
  321. .B >
  322. .I foo.jpg
  323. .SH HINTS
  324. Color GIF files are not the ideal input for JPEG; JPEG is really intended for
  325. compressing full-color (24-bit) images. In particular, don't try to convert
  326. cartoons, line drawings, and other images that have only a few distinct
  327. colors. GIF works great on these, JPEG does not. If you want to convert a
  328. GIF to JPEG, you should experiment with
  329. .BR cjpeg 's
  330. .B \-quality
  331. and
  332. .B \-smooth
  333. options to get a satisfactory conversion.
  334. .B \-smooth 10
  335. or so is often helpful.
  336. .PP
  337. Avoid running an image through a series of JPEG compression/decompression
  338. cycles. Image quality loss will accumulate; after ten or so cycles the image
  339. may be noticeably worse than it was after one cycle. It's best to use a
  340. lossless format while manipulating an image, then convert to JPEG format when
  341. you are ready to file the image away.
  342. .PP
  343. The
  344. .B \-optimize
  345. option to
  346. .B cjpeg
  347. is worth using when you are making a "final" version for posting or archiving.
  348. It's also a win when you are using low quality settings to make very small
  349. JPEG files; the percentage improvement is often a lot more than it is on
  350. larger files. (At present,
  351. .B \-optimize
  352. mode is always selected when generating progressive JPEG files.)
  353. .SH ENVIRONMENT
  354. .TP
  355. .B JPEGMEM
  356. If this environment variable is set, its value is the default memory limit.
  357. The value is specified as described for the
  358. .B \-maxmemory
  359. switch.
  360. .B JPEGMEM
  361. overrides the default value specified when the program was compiled, and
  362. itself is overridden by an explicit
  363. .BR \-maxmemory .
  364. .SH SEE ALSO
  365. .BR djpeg (1),
  366. .BR jpegtran (1),
  367. .BR rdjpgcom (1),
  368. .BR wrjpgcom (1)
  369. .br
  370. .BR ppm (5),
  371. .BR pgm (5)
  372. .br
  373. Wallace, Gregory K. "The JPEG Still Picture Compression Standard",
  374. Communications of the ACM, April 1991 (vol. 34, no. 4), pp. 30-44.
  375. .SH AUTHOR
  376. Independent JPEG Group
  377. .SH BUGS
  378. GIF input files are no longer supported, to avoid the Unisys LZW patent
  379. (now expired).
  380. (Conversion of GIF files to JPEG is usually a bad idea anyway.)
  381. .PP
  382. Not all variants of BMP and Targa file formats are supported.
  383. .PP
  384. The
  385. .B \-targa
  386. switch is not a bug, it's a feature. (It would be a bug if the Targa format
  387. designers had not been clueless.)