blob: f978cef83269670b509f25b44d2cfee9da7c1cb4 [file] [log] [blame]
Thomas G. Lanebc79e061995-08-02 00:00:00 +00001/*
2 * jpegtran.c
3 *
DRCa73e8702012-12-31 02:52:30 +00004 * This file was part of the Independent JPEG Group's software:
Guido Vollbedingf18f81b2010-02-28 00:00:00 +00005 * Copyright (C) 1995-2010, Thomas G. Lane, Guido Vollbeding.
DRCa6ef2822013-09-28 03:23:49 +00006 * libjpeg-turbo Modifications:
DRC9665f5e2014-11-22 04:04:38 +00007 * Copyright (C) 2010, 2014, D. R. Commander.
Thomas G. Lanebc79e061995-08-02 00:00:00 +00008 * For conditions of distribution and use, see the accompanying README file.
9 *
10 * This file contains a command-line user interface for JPEG transcoding.
Guido Vollbeding989630f2010-01-10 00:00:00 +000011 * It is very similar to cjpeg.c, and partly to djpeg.c, but provides
12 * lossless transcoding between different JPEG file formats. It also
13 * provides some lossless and sort-of-lossless transformations of JPEG data.
Thomas G. Lanebc79e061995-08-02 00:00:00 +000014 */
15
DRCe5eaf372014-05-09 18:00:32 +000016#include "cdjpeg.h" /* Common decls for cjpeg/djpeg applications */
17#include "transupp.h" /* Support routines for jpegtran */
18#include "jversion.h" /* for version message */
DRCff6961f2014-04-20 09:17:11 +000019#include "jconfigint.h"
Thomas G. Lanebc79e061995-08-02 00:00:00 +000020
DRCe5eaf372014-05-09 18:00:32 +000021#ifdef USE_CCOMMAND /* command-line reader for Macintosh */
Thomas G. Lanebc79e061995-08-02 00:00:00 +000022#ifdef __MWERKS__
Thomas G. Lane489583f1996-02-07 00:00:00 +000023#include <SIOUX.h> /* Metrowerks needs this */
DRCe5eaf372014-05-09 18:00:32 +000024#include <console.h> /* ... and this */
Thomas G. Lanebc79e061995-08-02 00:00:00 +000025#endif
26#ifdef THINK_C
DRCe5eaf372014-05-09 18:00:32 +000027#include <console.h> /* Think declares it here */
Thomas G. Lanebc79e061995-08-02 00:00:00 +000028#endif
29#endif
30
31
32/*
33 * Argument-parsing code.
34 * The switch parser is designed to be useful with DOS-style command line
35 * syntax, ie, intermixed switches and file names, where only the switches
36 * to the left of a given file name affect processing of that file.
37 * The main program in this file doesn't actually use this capability...
38 */
39
40
DRCe5eaf372014-05-09 18:00:32 +000041static const char * progname; /* program name for error messages */
42static char * outfilename; /* for -outfile switch */
43static JCOPY_OPTION copyoption; /* -copy switch */
Thomas G. Lane5ead57a1998-03-27 00:00:00 +000044static jpeg_transform_info transformoption; /* image transformation options */
Thomas G. Lanebc79e061995-08-02 00:00:00 +000045
46
Thomas G. Lane489583f1996-02-07 00:00:00 +000047LOCAL(void)
Thomas G. Lanebc79e061995-08-02 00:00:00 +000048usage (void)
49/* complain about bad command line */
50{
51 fprintf(stderr, "usage: %s [switches] ", progname);
52#ifdef TWO_FILE_COMMANDLINE
53 fprintf(stderr, "inputfile outputfile\n");
54#else
55 fprintf(stderr, "[inputfile]\n");
56#endif
57
58 fprintf(stderr, "Switches (names may be abbreviated):\n");
Thomas G. Lane5ead57a1998-03-27 00:00:00 +000059 fprintf(stderr, " -copy none Copy no extra markers from source file\n");
60 fprintf(stderr, " -copy comments Copy only comment markers (default)\n");
61 fprintf(stderr, " -copy all Copy all extra markers\n");
Thomas G. Lanebc79e061995-08-02 00:00:00 +000062#ifdef ENTROPY_OPT_SUPPORTED
63 fprintf(stderr, " -optimize Optimize Huffman table (smaller file, but slow compression)\n");
64#endif
65#ifdef C_PROGRESSIVE_SUPPORTED
66 fprintf(stderr, " -progressive Create progressive JPEG file\n");
67#endif
Thomas G. Lane5ead57a1998-03-27 00:00:00 +000068 fprintf(stderr, "Switches for modifying the image:\n");
Guido Vollbedingf18f81b2010-02-28 00:00:00 +000069#if TRANSFORMS_SUPPORTED
Guido Vollbeding5996a252009-06-27 00:00:00 +000070 fprintf(stderr, " -crop WxH+X+Y Crop to a rectangular subarea\n");
Thomas G. Lane5ead57a1998-03-27 00:00:00 +000071 fprintf(stderr, " -grayscale Reduce to grayscale (omit color data)\n");
72 fprintf(stderr, " -flip [horizontal|vertical] Mirror image (left-right or top-bottom)\n");
Guido Vollbeding5996a252009-06-27 00:00:00 +000073 fprintf(stderr, " -perfect Fail if there is non-transformable edge blocks\n");
Thomas G. Lane5ead57a1998-03-27 00:00:00 +000074 fprintf(stderr, " -rotate [90|180|270] Rotate image (degrees clockwise)\n");
Guido Vollbedingf18f81b2010-02-28 00:00:00 +000075#endif
Guido Vollbedingf18f81b2010-02-28 00:00:00 +000076#if TRANSFORMS_SUPPORTED
Thomas G. Lane5ead57a1998-03-27 00:00:00 +000077 fprintf(stderr, " -transpose Transpose image\n");
78 fprintf(stderr, " -transverse Transverse transpose image\n");
79 fprintf(stderr, " -trim Drop non-transformable edge blocks\n");
Guido Vollbedingf18f81b2010-02-28 00:00:00 +000080#endif
Thomas G. Lanebc79e061995-08-02 00:00:00 +000081 fprintf(stderr, "Switches for advanced users:\n");
DRCd657ba62012-01-27 09:41:20 +000082#ifdef C_ARITH_CODING_SUPPORTED
83 fprintf(stderr, " -arithmetic Use arithmetic coding\n");
84#endif
Thomas G. Lanebc79e061995-08-02 00:00:00 +000085 fprintf(stderr, " -restart N Set restart interval in rows, or in blocks with B\n");
86 fprintf(stderr, " -maxmemory N Maximum memory to use (in kbytes)\n");
87 fprintf(stderr, " -outfile name Specify name for output file\n");
88 fprintf(stderr, " -verbose or -debug Emit debug output\n");
DRC9665f5e2014-11-22 04:04:38 +000089 fprintf(stderr, " -version Print version information and exit\n");
Thomas G. Lanebc79e061995-08-02 00:00:00 +000090 fprintf(stderr, "Switches for wizards:\n");
Thomas G. Lanebc79e061995-08-02 00:00:00 +000091#ifdef C_MULTISCAN_FILES_SUPPORTED
92 fprintf(stderr, " -scans file Create multi-scan JPEG per script file\n");
93#endif
94 exit(EXIT_FAILURE);
95}
96
97
Thomas G. Lane5ead57a1998-03-27 00:00:00 +000098LOCAL(void)
99select_transform (JXFORM_CODE transform)
100/* Silly little routine to detect multiple transform options,
101 * which we can't handle.
102 */
103{
104#if TRANSFORMS_SUPPORTED
105 if (transformoption.transform == JXFORM_NONE ||
106 transformoption.transform == transform) {
107 transformoption.transform = transform;
108 } else {
109 fprintf(stderr, "%s: can only do one image transformation at a time\n",
DRCe5eaf372014-05-09 18:00:32 +0000110 progname);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000111 usage();
112 }
113#else
114 fprintf(stderr, "%s: sorry, image transformation was not compiled\n",
DRCe5eaf372014-05-09 18:00:32 +0000115 progname);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000116 exit(EXIT_FAILURE);
117#endif
118}
119
120
Thomas G. Lane489583f1996-02-07 00:00:00 +0000121LOCAL(int)
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000122parse_switches (j_compress_ptr cinfo, int argc, char **argv,
DRCe5eaf372014-05-09 18:00:32 +0000123 int last_file_arg_seen, boolean for_real)
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000124/* Parse optional switches.
125 * Returns argv[] index of first file-name argument (== argc if none).
126 * Any file names with indexes <= last_file_arg_seen are ignored;
127 * they have presumably been processed in a previous iteration.
128 * (Pass 0 for last_file_arg_seen on the first or only iteration.)
129 * for_real is FALSE on the first (dummy) pass; we may skip any expensive
130 * processing.
131 */
132{
133 int argn;
134 char * arg;
135 boolean simple_progressive;
DRCe5eaf372014-05-09 18:00:32 +0000136 char * scansarg = NULL; /* saves -scans parm if any */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000137
138 /* Set up default JPEG parameters. */
139 simple_progressive = FALSE;
140 outfilename = NULL;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000141 copyoption = JCOPYOPT_DEFAULT;
142 transformoption.transform = JXFORM_NONE;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000143 transformoption.perfect = FALSE;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000144 transformoption.trim = FALSE;
145 transformoption.force_grayscale = FALSE;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000146 transformoption.crop = FALSE;
DRCba5ea512011-03-04 03:20:34 +0000147 transformoption.slow_hflip = FALSE;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000148 cinfo->err->trace_level = 0;
149
150 /* Scan command line options, adjust parameters */
151
152 for (argn = 1; argn < argc; argn++) {
153 arg = argv[argn];
154 if (*arg != '-') {
155 /* Not a switch, must be a file name argument */
156 if (argn <= last_file_arg_seen) {
DRCe5eaf372014-05-09 18:00:32 +0000157 outfilename = NULL; /* -outfile applies to just one input file */
158 continue; /* ignore this name if previously processed */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000159 }
DRCe5eaf372014-05-09 18:00:32 +0000160 break; /* else done parsing switches */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000161 }
DRCe5eaf372014-05-09 18:00:32 +0000162 arg++; /* advance past switch marker character */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000163
164 if (keymatch(arg, "arithmetic", 1)) {
165 /* Use arithmetic coding. */
166#ifdef C_ARITH_CODING_SUPPORTED
167 cinfo->arith_code = TRUE;
168#else
169 fprintf(stderr, "%s: sorry, arithmetic coding not supported\n",
DRCe5eaf372014-05-09 18:00:32 +0000170 progname);
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000171 exit(EXIT_FAILURE);
172#endif
173
Guido Vollbeding5996a252009-06-27 00:00:00 +0000174 } else if (keymatch(arg, "copy", 2)) {
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000175 /* Select which extra markers to copy. */
DRCe5eaf372014-05-09 18:00:32 +0000176 if (++argn >= argc) /* advance to next argument */
177 usage();
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000178 if (keymatch(argv[argn], "none", 1)) {
DRCe5eaf372014-05-09 18:00:32 +0000179 copyoption = JCOPYOPT_NONE;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000180 } else if (keymatch(argv[argn], "comments", 1)) {
DRCe5eaf372014-05-09 18:00:32 +0000181 copyoption = JCOPYOPT_COMMENTS;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000182 } else if (keymatch(argv[argn], "all", 1)) {
DRCe5eaf372014-05-09 18:00:32 +0000183 copyoption = JCOPYOPT_ALL;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000184 } else
DRCe5eaf372014-05-09 18:00:32 +0000185 usage();
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000186
Guido Vollbeding5996a252009-06-27 00:00:00 +0000187 } else if (keymatch(arg, "crop", 2)) {
188 /* Perform lossless cropping. */
189#if TRANSFORMS_SUPPORTED
DRCe5eaf372014-05-09 18:00:32 +0000190 if (++argn >= argc) /* advance to next argument */
191 usage();
Guido Vollbeding5996a252009-06-27 00:00:00 +0000192 if (! jtransform_parse_crop_spec(&transformoption, argv[argn])) {
DRCe5eaf372014-05-09 18:00:32 +0000193 fprintf(stderr, "%s: bogus -crop argument '%s'\n",
194 progname, argv[argn]);
195 exit(EXIT_FAILURE);
Guido Vollbeding5996a252009-06-27 00:00:00 +0000196 }
197#else
DRCe5eaf372014-05-09 18:00:32 +0000198 select_transform(JXFORM_NONE); /* force an error */
Guido Vollbeding5996a252009-06-27 00:00:00 +0000199#endif
200
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000201 } else if (keymatch(arg, "debug", 1) || keymatch(arg, "verbose", 1)) {
202 /* Enable debug printouts. */
203 /* On first -d, print version identification */
204 static boolean printed_version = FALSE;
205
206 if (! printed_version) {
DRCe5eaf372014-05-09 18:00:32 +0000207 fprintf(stderr, "%s version %s (build %s)\n",
208 PACKAGE_NAME, VERSION, BUILD);
209 fprintf(stderr, "%s\n\n", JCOPYRIGHT);
210 fprintf(stderr, "Emulating The Independent JPEG Group's software, version %s\n\n",
211 JVERSION);
212 printed_version = TRUE;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000213 }
214 cinfo->err->trace_level++;
215
DRC9665f5e2014-11-22 04:04:38 +0000216 } else if (keymatch(arg, "version", 4)) {
217 fprintf(stderr, "%s version %s (build %s)\n",
218 PACKAGE_NAME, VERSION, BUILD);
DRC306add82014-11-22 04:25:04 +0000219 exit(EXIT_SUCCESS);
DRC9665f5e2014-11-22 04:04:38 +0000220
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000221 } else if (keymatch(arg, "flip", 1)) {
222 /* Mirror left-right or top-bottom. */
DRCe5eaf372014-05-09 18:00:32 +0000223 if (++argn >= argc) /* advance to next argument */
224 usage();
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000225 if (keymatch(argv[argn], "horizontal", 1))
DRCe5eaf372014-05-09 18:00:32 +0000226 select_transform(JXFORM_FLIP_H);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000227 else if (keymatch(argv[argn], "vertical", 1))
DRCe5eaf372014-05-09 18:00:32 +0000228 select_transform(JXFORM_FLIP_V);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000229 else
DRCe5eaf372014-05-09 18:00:32 +0000230 usage();
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000231
232 } else if (keymatch(arg, "grayscale", 1) || keymatch(arg, "greyscale",1)) {
233 /* Force to grayscale. */
234#if TRANSFORMS_SUPPORTED
235 transformoption.force_grayscale = TRUE;
236#else
DRCe5eaf372014-05-09 18:00:32 +0000237 select_transform(JXFORM_NONE); /* force an error */
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000238#endif
239
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000240 } else if (keymatch(arg, "maxmemory", 3)) {
241 /* Maximum memory in Kb (or Mb with 'm'). */
242 long lval;
243 char ch = 'x';
244
DRCe5eaf372014-05-09 18:00:32 +0000245 if (++argn >= argc) /* advance to next argument */
246 usage();
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000247 if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1)
DRCe5eaf372014-05-09 18:00:32 +0000248 usage();
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000249 if (ch == 'm' || ch == 'M')
DRCe5eaf372014-05-09 18:00:32 +0000250 lval *= 1000L;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000251 cinfo->mem->max_memory_to_use = lval * 1000L;
252
253 } else if (keymatch(arg, "optimize", 1) || keymatch(arg, "optimise", 1)) {
254 /* Enable entropy parm optimization. */
255#ifdef ENTROPY_OPT_SUPPORTED
256 cinfo->optimize_coding = TRUE;
257#else
258 fprintf(stderr, "%s: sorry, entropy optimization was not compiled\n",
DRCe5eaf372014-05-09 18:00:32 +0000259 progname);
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000260 exit(EXIT_FAILURE);
261#endif
262
263 } else if (keymatch(arg, "outfile", 4)) {
264 /* Set output file name. */
DRCe5eaf372014-05-09 18:00:32 +0000265 if (++argn >= argc) /* advance to next argument */
266 usage();
267 outfilename = argv[argn]; /* save it away for later use */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000268
Guido Vollbeding5996a252009-06-27 00:00:00 +0000269 } else if (keymatch(arg, "perfect", 2)) {
270 /* Fail if there is any partial edge MCUs that the transform can't
271 * handle. */
272 transformoption.perfect = TRUE;
273
274 } else if (keymatch(arg, "progressive", 2)) {
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000275 /* Select simple progressive mode. */
276#ifdef C_PROGRESSIVE_SUPPORTED
277 simple_progressive = TRUE;
278 /* We must postpone execution until num_components is known. */
279#else
280 fprintf(stderr, "%s: sorry, progressive output was not compiled\n",
DRCe5eaf372014-05-09 18:00:32 +0000281 progname);
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000282 exit(EXIT_FAILURE);
283#endif
284
285 } else if (keymatch(arg, "restart", 1)) {
286 /* Restart interval in MCU rows (or in MCUs with 'b'). */
287 long lval;
288 char ch = 'x';
289
DRCe5eaf372014-05-09 18:00:32 +0000290 if (++argn >= argc) /* advance to next argument */
291 usage();
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000292 if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1)
DRCe5eaf372014-05-09 18:00:32 +0000293 usage();
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000294 if (lval < 0 || lval > 65535L)
DRCe5eaf372014-05-09 18:00:32 +0000295 usage();
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000296 if (ch == 'b' || ch == 'B') {
DRCe5eaf372014-05-09 18:00:32 +0000297 cinfo->restart_interval = (unsigned int) lval;
298 cinfo->restart_in_rows = 0; /* else prior '-restart n' overrides me */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000299 } else {
DRCe5eaf372014-05-09 18:00:32 +0000300 cinfo->restart_in_rows = (int) lval;
301 /* restart_interval will be computed during startup */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000302 }
303
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000304 } else if (keymatch(arg, "rotate", 2)) {
305 /* Rotate 90, 180, or 270 degrees (measured clockwise). */
DRCe5eaf372014-05-09 18:00:32 +0000306 if (++argn >= argc) /* advance to next argument */
307 usage();
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000308 if (keymatch(argv[argn], "90", 2))
DRCe5eaf372014-05-09 18:00:32 +0000309 select_transform(JXFORM_ROT_90);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000310 else if (keymatch(argv[argn], "180", 3))
DRCe5eaf372014-05-09 18:00:32 +0000311 select_transform(JXFORM_ROT_180);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000312 else if (keymatch(argv[argn], "270", 3))
DRCe5eaf372014-05-09 18:00:32 +0000313 select_transform(JXFORM_ROT_270);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000314 else
DRCe5eaf372014-05-09 18:00:32 +0000315 usage();
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000316
317 } else if (keymatch(arg, "scans", 1)) {
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000318 /* Set scan script. */
319#ifdef C_MULTISCAN_FILES_SUPPORTED
DRCe5eaf372014-05-09 18:00:32 +0000320 if (++argn >= argc) /* advance to next argument */
321 usage();
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000322 scansarg = argv[argn];
323 /* We must postpone reading the file in case -progressive appears. */
324#else
325 fprintf(stderr, "%s: sorry, multi-scan output was not compiled\n",
DRCe5eaf372014-05-09 18:00:32 +0000326 progname);
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000327 exit(EXIT_FAILURE);
328#endif
329
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000330 } else if (keymatch(arg, "transpose", 1)) {
331 /* Transpose (across UL-to-LR axis). */
332 select_transform(JXFORM_TRANSPOSE);
333
334 } else if (keymatch(arg, "transverse", 6)) {
335 /* Transverse transpose (across UR-to-LL axis). */
336 select_transform(JXFORM_TRANSVERSE);
337
338 } else if (keymatch(arg, "trim", 3)) {
339 /* Trim off any partial edge MCUs that the transform can't handle. */
340 transformoption.trim = TRUE;
341
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000342 } else {
DRCe5eaf372014-05-09 18:00:32 +0000343 usage(); /* bogus switch */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000344 }
345 }
346
347 /* Post-switch-scanning cleanup */
348
349 if (for_real) {
350
351#ifdef C_PROGRESSIVE_SUPPORTED
DRCe5eaf372014-05-09 18:00:32 +0000352 if (simple_progressive) /* process -progressive; -scans can override */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000353 jpeg_simple_progression(cinfo);
354#endif
355
356#ifdef C_MULTISCAN_FILES_SUPPORTED
DRCe5eaf372014-05-09 18:00:32 +0000357 if (scansarg != NULL) /* process -scans if it was present */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000358 if (! read_scan_script(cinfo, scansarg))
DRCe5eaf372014-05-09 18:00:32 +0000359 usage();
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000360#endif
361 }
362
DRCe5eaf372014-05-09 18:00:32 +0000363 return argn; /* return index of next arg (file name) */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000364}
365
366
367/*
368 * The main program.
369 */
370
Thomas G. Lane489583f1996-02-07 00:00:00 +0000371int
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000372main (int argc, char **argv)
373{
374 struct jpeg_decompress_struct srcinfo;
375 struct jpeg_compress_struct dstinfo;
376 struct jpeg_error_mgr jsrcerr, jdsterr;
377#ifdef PROGRESS_REPORT
378 struct cdjpeg_progress_mgr progress;
379#endif
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000380 jvirt_barray_ptr * src_coef_arrays;
381 jvirt_barray_ptr * dst_coef_arrays;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000382 int file_index;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000383 /* We assume all-in-memory processing and can therefore use only a
DRCff6961f2014-04-20 09:17:11 +0000384 * single file pointer for sequential input and output operation.
Guido Vollbeding5996a252009-06-27 00:00:00 +0000385 */
386 FILE * fp;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000387
388 /* On Mac, fetch a command line. */
389#ifdef USE_CCOMMAND
390 argc = ccommand(&argv);
391#endif
392
393 progname = argv[0];
394 if (progname == NULL || progname[0] == 0)
DRCe5eaf372014-05-09 18:00:32 +0000395 progname = "jpegtran"; /* in case C library doesn't provide it */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000396
397 /* Initialize the JPEG decompression object with default error handling. */
398 srcinfo.err = jpeg_std_error(&jsrcerr);
399 jpeg_create_decompress(&srcinfo);
400 /* Initialize the JPEG compression object with default error handling. */
401 dstinfo.err = jpeg_std_error(&jdsterr);
402 jpeg_create_compress(&dstinfo);
403
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000404 /* Scan command line to find file names.
405 * It is convenient to use just one switch-parsing routine, but the switch
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000406 * values read here are mostly ignored; we will rescan the switches after
407 * opening the input file. Also note that most of the switches affect the
408 * destination JPEG object, so we parse into that and then copy over what
409 * needs to affects the source too.
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000410 */
411
412 file_index = parse_switches(&dstinfo, argc, argv, 0, FALSE);
413 jsrcerr.trace_level = jdsterr.trace_level;
Thomas G. Lane489583f1996-02-07 00:00:00 +0000414 srcinfo.mem->max_memory_to_use = dstinfo.mem->max_memory_to_use;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000415
416#ifdef TWO_FILE_COMMANDLINE
417 /* Must have either -outfile switch or explicit output file name */
418 if (outfilename == NULL) {
419 if (file_index != argc-2) {
420 fprintf(stderr, "%s: must name one input and one output file\n",
DRCe5eaf372014-05-09 18:00:32 +0000421 progname);
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000422 usage();
423 }
424 outfilename = argv[file_index+1];
425 } else {
426 if (file_index != argc-1) {
427 fprintf(stderr, "%s: must name one input and one output file\n",
DRCe5eaf372014-05-09 18:00:32 +0000428 progname);
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000429 usage();
430 }
431 }
432#else
433 /* Unix style: expect zero or one file name */
434 if (file_index < argc-1) {
435 fprintf(stderr, "%s: only one input file\n", progname);
436 usage();
437 }
438#endif /* TWO_FILE_COMMANDLINE */
439
440 /* Open the input file. */
441 if (file_index < argc) {
Guido Vollbeding5996a252009-06-27 00:00:00 +0000442 if ((fp = fopen(argv[file_index], READ_BINARY)) == NULL) {
443 fprintf(stderr, "%s: can't open %s for reading\n", progname, argv[file_index]);
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000444 exit(EXIT_FAILURE);
445 }
446 } else {
447 /* default input file is stdin */
Guido Vollbeding5996a252009-06-27 00:00:00 +0000448 fp = read_stdin();
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000449 }
450
451#ifdef PROGRESS_REPORT
452 start_progress_monitor((j_common_ptr) &dstinfo, &progress);
453#endif
454
455 /* Specify data source for decompression */
Guido Vollbeding5996a252009-06-27 00:00:00 +0000456 jpeg_stdio_src(&srcinfo, fp);
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000457
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000458 /* Enable saving of extra markers that we want to copy */
459 jcopy_markers_setup(&srcinfo, copyoption);
460
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000461 /* Read file header */
462 (void) jpeg_read_header(&srcinfo, TRUE);
463
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000464 /* Any space needed by a transform option must be requested before
465 * jpeg_read_coefficients so that memory allocation will be done right.
466 */
467#if TRANSFORMS_SUPPORTED
Guido Vollbeding989630f2010-01-10 00:00:00 +0000468 /* Fail right away if -perfect is given and transformation is not perfect.
Guido Vollbeding5996a252009-06-27 00:00:00 +0000469 */
Guido Vollbeding989630f2010-01-10 00:00:00 +0000470 if (!jtransform_request_workspace(&srcinfo, &transformoption)) {
Guido Vollbeding5996a252009-06-27 00:00:00 +0000471 fprintf(stderr, "%s: transformation is not perfect\n", progname);
472 exit(EXIT_FAILURE);
473 }
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000474#endif
475
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000476 /* Read source file as DCT coefficients */
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000477 src_coef_arrays = jpeg_read_coefficients(&srcinfo);
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000478
479 /* Initialize destination compression parameters from source values */
480 jpeg_copy_critical_parameters(&srcinfo, &dstinfo);
481
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000482 /* Adjust destination parameters if required by transform options;
483 * also find out which set of coefficient arrays will hold the output.
484 */
485#if TRANSFORMS_SUPPORTED
486 dst_coef_arrays = jtransform_adjust_parameters(&srcinfo, &dstinfo,
DRCe5eaf372014-05-09 18:00:32 +0000487 src_coef_arrays,
488 &transformoption);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000489#else
490 dst_coef_arrays = src_coef_arrays;
491#endif
492
Guido Vollbeding5996a252009-06-27 00:00:00 +0000493 /* Close input file, if we opened it.
494 * Note: we assume that jpeg_read_coefficients consumed all input
495 * until JPEG_REACHED_EOI, and that jpeg_finish_decompress will
496 * only consume more while (! cinfo->inputctl->eoi_reached).
497 * We cannot call jpeg_finish_decompress here since we still need the
498 * virtual arrays allocated from the source object for processing.
499 */
500 if (fp != stdin)
501 fclose(fp);
502
503 /* Open the output file. */
504 if (outfilename != NULL) {
505 if ((fp = fopen(outfilename, WRITE_BINARY)) == NULL) {
506 fprintf(stderr, "%s: can't open %s for writing\n", progname, outfilename);
507 exit(EXIT_FAILURE);
508 }
509 } else {
510 /* default output file is stdout */
511 fp = write_stdout();
512 }
513
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000514 /* Adjust default compression parameters by re-parsing the options */
515 file_index = parse_switches(&dstinfo, argc, argv, 0, TRUE);
516
517 /* Specify data destination for compression */
Guido Vollbeding5996a252009-06-27 00:00:00 +0000518 jpeg_stdio_dest(&dstinfo, fp);
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000519
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000520 /* Start compressor (note no image data is actually written here) */
521 jpeg_write_coefficients(&dstinfo, dst_coef_arrays);
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000522
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000523 /* Copy to the output file any extra markers that we want to preserve */
524 jcopy_markers_execute(&srcinfo, &dstinfo, copyoption);
525
526 /* Execute image transformation, if any */
527#if TRANSFORMS_SUPPORTED
528 jtransform_execute_transformation(&srcinfo, &dstinfo,
DRCe5eaf372014-05-09 18:00:32 +0000529 src_coef_arrays,
530 &transformoption);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000531#endif
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000532
533 /* Finish compression and release memory */
534 jpeg_finish_compress(&dstinfo);
535 jpeg_destroy_compress(&dstinfo);
536 (void) jpeg_finish_decompress(&srcinfo);
537 jpeg_destroy_decompress(&srcinfo);
538
Guido Vollbeding5996a252009-06-27 00:00:00 +0000539 /* Close output file, if we opened it */
540 if (fp != stdout)
541 fclose(fp);
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000542
543#ifdef PROGRESS_REPORT
544 end_progress_monitor((j_common_ptr) &dstinfo);
545#endif
546
547 /* All done. */
548 exit(jsrcerr.num_warnings + jdsterr.num_warnings ?EXIT_WARNING:EXIT_SUCCESS);
DRCe5eaf372014-05-09 18:00:32 +0000549 return 0; /* suppress no-return-value warnings */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000550}