blob: a7d25047a0c6762f64c4931be9e12d0b1634c70c [file] [log] [blame]
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001/*
2 * cjpeg.c
3 *
DRCa73e8702012-12-31 02:52:30 +00004 * This file was part of the Independent JPEG Group's software:
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00005 * Copyright (C) 1991-1998, Thomas G. Lane.
Guido Vollbeding5829cb22012-01-15 00:00:00 +00006 * Modified 2003-2011 by Guido Vollbeding.
DRCa6ef2822013-09-28 03:23:49 +00007 * libjpeg-turbo Modifications:
DRCab706232013-01-18 23:42:31 +00008 * Copyright (C) 2010, 2013, D. R. Commander.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00009 * For conditions of distribution and use, see the accompanying README file.
10 *
11 * This file contains a command-line user interface for the JPEG compressor.
12 * It should work on any system with Unix- or MS-DOS-style command lines.
13 *
14 * Two different command line styles are permitted, depending on the
15 * compile-time switch TWO_FILE_COMMANDLINE:
DRCe5eaf372014-05-09 18:00:32 +000016 * cjpeg [options] inputfile outputfile
17 * cjpeg [options] [inputfile]
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000018 * In the second style, output is always to standard output, which you'd
19 * normally redirect to a file or pipe to some other program. Input is
20 * either from a named file or from standard input (typically redirected).
21 * The second style is convenient on Unix but is unhelpful on systems that
22 * don't support pipes. Also, you MUST use the first style if your system
23 * doesn't do binary I/O to stdin/stdout.
24 * To simplify script writing, the "-outfile" switch is provided. The syntax
DRCe5eaf372014-05-09 18:00:32 +000025 * cjpeg [options] -outfile outputfile inputfile
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000026 * works regardless of which command line style is used.
27 */
28
DRCe5eaf372014-05-09 18:00:32 +000029#include "cdjpeg.h" /* Common decls for cjpeg/djpeg applications */
30#include "jversion.h" /* for version message */
DRCff6961f2014-04-20 09:17:11 +000031#include "jconfigint.h"
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000032
DRCe5eaf372014-05-09 18:00:32 +000033#ifdef USE_CCOMMAND /* command-line reader for Macintosh */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000034#ifdef __MWERKS__
Thomas G. Lane489583f1996-02-07 00:00:00 +000035#include <SIOUX.h> /* Metrowerks needs this */
DRCe5eaf372014-05-09 18:00:32 +000036#include <console.h> /* ... and this */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000037#endif
38#ifdef THINK_C
DRCe5eaf372014-05-09 18:00:32 +000039#include <console.h> /* Think declares it here */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000040#endif
41#endif
42
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000043
Thomas G. Lane9ba2f5e1994-12-07 00:00:00 +000044/* Create the add-on message string table. */
45
DRCe5eaf372014-05-09 18:00:32 +000046#define JMESSAGE(code,string) string ,
Thomas G. Lane9ba2f5e1994-12-07 00:00:00 +000047
48static const char * const cdjpeg_message_table[] = {
49#include "cderror.h"
50 NULL
51};
52
53
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000054/*
55 * This routine determines what format the input file is,
56 * and selects the appropriate input-reading module.
57 *
58 * To determine which family of input formats the file belongs to,
59 * we may look only at the first byte of the file, since C does not
60 * guarantee that more than one character can be pushed back with ungetc.
61 * Looking at additional bytes would require one of these approaches:
62 * 1) assume we can fseek() the input file (fails for piped input);
63 * 2) assume we can push back more than one character (works in
64 * some C implementations, but unportable);
65 * 3) provide our own buffering (breaks input readers that want to use
66 * stdio directly, such as the RLE library);
67 * or 4) don't put back the data, and modify the input_init methods to assume
68 * they start reading after the start of file (also breaks RLE library).
69 * #1 is attractive for MS-DOS but is untenable on Unix.
70 *
71 * The most portable solution for file types that can't be identified by their
72 * first byte is to make the user tell us what they are. This is also the
73 * only approach for "raw" file types that contain only arbitrary values.
74 * We presently apply this method for Targa files. Most of the time Targa
75 * files start with 0x00, so we recognize that case. Potentially, however,
76 * a Targa file could start with any byte value (byte 0 is the length of the
77 * seldom-used ID field), so we provide a switch to force Targa input mode.
78 */
79
DRCe5eaf372014-05-09 18:00:32 +000080static boolean is_targa; /* records user -targa switch */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000081
82
Thomas G. Lane489583f1996-02-07 00:00:00 +000083LOCAL(cjpeg_source_ptr)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000084select_file_type (j_compress_ptr cinfo, FILE * infile)
85{
86 int c;
87
88 if (is_targa) {
89#ifdef TARGA_SUPPORTED
90 return jinit_read_targa(cinfo);
91#else
92 ERREXIT(cinfo, JERR_TGA_NOTCOMP);
93#endif
94 }
95
96 if ((c = getc(infile)) == EOF)
97 ERREXIT(cinfo, JERR_INPUT_EMPTY);
98 if (ungetc(c, infile) == EOF)
99 ERREXIT(cinfo, JERR_UNGETC_FAILED);
100
101 switch (c) {
102#ifdef BMP_SUPPORTED
103 case 'B':
104 return jinit_read_bmp(cinfo);
105#endif
106#ifdef GIF_SUPPORTED
107 case 'G':
108 return jinit_read_gif(cinfo);
109#endif
110#ifdef PPM_SUPPORTED
111 case 'P':
112 return jinit_read_ppm(cinfo);
113#endif
114#ifdef RLE_SUPPORTED
115 case 'R':
116 return jinit_read_rle(cinfo);
117#endif
118#ifdef TARGA_SUPPORTED
119 case 0x00:
120 return jinit_read_targa(cinfo);
121#endif
122 default:
123 ERREXIT(cinfo, JERR_UNKNOWN_FORMAT);
124 break;
125 }
126
DRCe5eaf372014-05-09 18:00:32 +0000127 return NULL; /* suppress compiler warnings */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000128}
129
130
131/*
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000132 * Argument-parsing code.
133 * The switch parser is designed to be useful with DOS-style command line
134 * syntax, ie, intermixed switches and file names, where only the switches
135 * to the left of a given file name affect processing of that file.
136 * The main program in this file doesn't actually use this capability...
137 */
138
139
DRCe5eaf372014-05-09 18:00:32 +0000140static const char * progname; /* program name for error messages */
141static char * outfilename; /* for -outfile switch */
DRCab706232013-01-18 23:42:31 +0000142boolean memdst; /* for -memdst switch */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000143
144
Thomas G. Lane489583f1996-02-07 00:00:00 +0000145LOCAL(void)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000146usage (void)
147/* complain about bad command line */
148{
149 fprintf(stderr, "usage: %s [switches] ", progname);
150#ifdef TWO_FILE_COMMANDLINE
151 fprintf(stderr, "inputfile outputfile\n");
152#else
153 fprintf(stderr, "[inputfile]\n");
154#endif
155
156 fprintf(stderr, "Switches (names may be abbreviated):\n");
Guido Vollbeding5996a252009-06-27 00:00:00 +0000157 fprintf(stderr, " -quality N[,...] Compression quality (0..100; 5-95 is useful range)\n");
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000158 fprintf(stderr, " -grayscale Create monochrome JPEG file\n");
Guido Vollbeding5829cb22012-01-15 00:00:00 +0000159 fprintf(stderr, " -rgb Create RGB JPEG file\n");
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000160#ifdef ENTROPY_OPT_SUPPORTED
161 fprintf(stderr, " -optimize Optimize Huffman table (smaller file, but slow compression)\n");
162#endif
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000163#ifdef C_PROGRESSIVE_SUPPORTED
164 fprintf(stderr, " -progressive Create progressive JPEG file\n");
165#endif
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000166#ifdef TARGA_SUPPORTED
167 fprintf(stderr, " -targa Input file is Targa format (usually not needed)\n");
168#endif
169 fprintf(stderr, "Switches for advanced users:\n");
DRCd657ba62012-01-27 09:41:20 +0000170#ifdef C_ARITH_CODING_SUPPORTED
171 fprintf(stderr, " -arithmetic Use arithmetic coding\n");
172#endif
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000173#ifdef DCT_ISLOW_SUPPORTED
174 fprintf(stderr, " -dct int Use integer DCT method%s\n",
DRCe5eaf372014-05-09 18:00:32 +0000175 (JDCT_DEFAULT == JDCT_ISLOW ? " (default)" : ""));
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000176#endif
177#ifdef DCT_IFAST_SUPPORTED
178 fprintf(stderr, " -dct fast Use fast integer DCT (less accurate)%s\n",
DRCe5eaf372014-05-09 18:00:32 +0000179 (JDCT_DEFAULT == JDCT_IFAST ? " (default)" : ""));
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000180#endif
181#ifdef DCT_FLOAT_SUPPORTED
182 fprintf(stderr, " -dct float Use floating-point DCT method%s\n",
DRCe5eaf372014-05-09 18:00:32 +0000183 (JDCT_DEFAULT == JDCT_FLOAT ? " (default)" : ""));
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000184#endif
185 fprintf(stderr, " -restart N Set restart interval in rows, or in blocks with B\n");
186#ifdef INPUT_SMOOTHING_SUPPORTED
187 fprintf(stderr, " -smooth N Smooth dithered input (N=1..100 is strength)\n");
188#endif
189 fprintf(stderr, " -maxmemory N Maximum memory to use (in kbytes)\n");
190 fprintf(stderr, " -outfile name Specify name for output file\n");
DRCab706232013-01-18 23:42:31 +0000191#if JPEG_LIB_VERSION >= 80 || defined(MEM_SRCDST_SUPPORTED)
192 fprintf(stderr, " -memdst Compress to memory instead of file (useful for benchmarking)\n");
193#endif
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000194 fprintf(stderr, " -verbose or -debug Emit debug output\n");
195 fprintf(stderr, "Switches for wizards:\n");
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000196 fprintf(stderr, " -baseline Force baseline quantization tables\n");
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000197 fprintf(stderr, " -qtables file Use quantization tables given in file\n");
198 fprintf(stderr, " -qslots N[,...] Set component quantization tables\n");
199 fprintf(stderr, " -sample HxV[,...] Set component sampling factors\n");
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000200#ifdef C_MULTISCAN_FILES_SUPPORTED
201 fprintf(stderr, " -scans file Create multi-scan JPEG per script file\n");
202#endif
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000203 exit(EXIT_FAILURE);
204}
205
206
Thomas G. Lane489583f1996-02-07 00:00:00 +0000207LOCAL(int)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000208parse_switches (j_compress_ptr cinfo, int argc, char **argv,
DRCe5eaf372014-05-09 18:00:32 +0000209 int last_file_arg_seen, boolean for_real)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000210/* Parse optional switches.
211 * Returns argv[] index of first file-name argument (== argc if none).
212 * Any file names with indexes <= last_file_arg_seen are ignored;
213 * they have presumably been processed in a previous iteration.
214 * (Pass 0 for last_file_arg_seen on the first or only iteration.)
215 * for_real is FALSE on the first (dummy) pass; we may skip any expensive
216 * processing.
217 */
218{
219 int argn;
220 char * arg;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000221 boolean force_baseline;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000222 boolean simple_progressive;
DRCe5eaf372014-05-09 18:00:32 +0000223 char * qualityarg = NULL; /* saves -quality parm if any */
224 char * qtablefile = NULL; /* saves -qtables filename if any */
225 char * qslotsarg = NULL; /* saves -qslots parm if any */
226 char * samplearg = NULL; /* saves -sample parm if any */
227 char * scansarg = NULL; /* saves -scans parm if any */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000228
229 /* Set up default JPEG parameters. */
Guido Vollbeding5996a252009-06-27 00:00:00 +0000230
DRCe5eaf372014-05-09 18:00:32 +0000231 force_baseline = FALSE; /* by default, allow 16-bit quantizers */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000232 simple_progressive = FALSE;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000233 is_targa = FALSE;
234 outfilename = NULL;
DRCab706232013-01-18 23:42:31 +0000235 memdst = FALSE;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000236 cinfo->err->trace_level = 0;
237
238 /* Scan command line options, adjust parameters */
239
240 for (argn = 1; argn < argc; argn++) {
241 arg = argv[argn];
242 if (*arg != '-') {
243 /* Not a switch, must be a file name argument */
244 if (argn <= last_file_arg_seen) {
DRCe5eaf372014-05-09 18:00:32 +0000245 outfilename = NULL; /* -outfile applies to just one input file */
246 continue; /* ignore this name if previously processed */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000247 }
DRCe5eaf372014-05-09 18:00:32 +0000248 break; /* else done parsing switches */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000249 }
DRCe5eaf372014-05-09 18:00:32 +0000250 arg++; /* advance past switch marker character */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000251
252 if (keymatch(arg, "arithmetic", 1)) {
253 /* Use arithmetic coding. */
254#ifdef C_ARITH_CODING_SUPPORTED
255 cinfo->arith_code = TRUE;
256#else
257 fprintf(stderr, "%s: sorry, arithmetic coding not supported\n",
DRCe5eaf372014-05-09 18:00:32 +0000258 progname);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000259 exit(EXIT_FAILURE);
260#endif
261
262 } else if (keymatch(arg, "baseline", 1)) {
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000263 /* Force baseline-compatible output (8-bit quantizer values). */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000264 force_baseline = TRUE;
265
266 } else if (keymatch(arg, "dct", 2)) {
267 /* Select DCT algorithm. */
DRCe5eaf372014-05-09 18:00:32 +0000268 if (++argn >= argc) /* advance to next argument */
269 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000270 if (keymatch(argv[argn], "int", 1)) {
DRCe5eaf372014-05-09 18:00:32 +0000271 cinfo->dct_method = JDCT_ISLOW;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000272 } else if (keymatch(argv[argn], "fast", 2)) {
DRCe5eaf372014-05-09 18:00:32 +0000273 cinfo->dct_method = JDCT_IFAST;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000274 } else if (keymatch(argv[argn], "float", 2)) {
DRCe5eaf372014-05-09 18:00:32 +0000275 cinfo->dct_method = JDCT_FLOAT;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000276 } else
DRCe5eaf372014-05-09 18:00:32 +0000277 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000278
279 } else if (keymatch(arg, "debug", 1) || keymatch(arg, "verbose", 1)) {
280 /* Enable debug printouts. */
281 /* On first -d, print version identification */
282 static boolean printed_version = FALSE;
283
284 if (! printed_version) {
DRCe5eaf372014-05-09 18:00:32 +0000285 fprintf(stderr, "%s version %s (build %s)\n",
286 PACKAGE_NAME, VERSION, BUILD);
287 fprintf(stderr, "%s\n\n", JCOPYRIGHT);
288 fprintf(stderr, "Emulating The Independent JPEG Group's software, version %s\n\n",
289 JVERSION);
290 printed_version = TRUE;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000291 }
292 cinfo->err->trace_level++;
293
294 } else if (keymatch(arg, "grayscale", 2) || keymatch(arg, "greyscale",2)) {
295 /* Force a monochrome JPEG file to be generated. */
296 jpeg_set_colorspace(cinfo, JCS_GRAYSCALE);
297
Guido Vollbeding5829cb22012-01-15 00:00:00 +0000298 } else if (keymatch(arg, "rgb", 3)) {
299 /* Force an RGB JPEG file to be generated. */
300 jpeg_set_colorspace(cinfo, JCS_RGB);
301
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000302 } else if (keymatch(arg, "maxmemory", 3)) {
303 /* Maximum memory in Kb (or Mb with 'm'). */
304 long lval;
305 char ch = 'x';
306
DRCe5eaf372014-05-09 18:00:32 +0000307 if (++argn >= argc) /* advance to next argument */
308 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000309 if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1)
DRCe5eaf372014-05-09 18:00:32 +0000310 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000311 if (ch == 'm' || ch == 'M')
DRCe5eaf372014-05-09 18:00:32 +0000312 lval *= 1000L;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000313 cinfo->mem->max_memory_to_use = lval * 1000L;
314
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000315 } else if (keymatch(arg, "optimize", 1) || keymatch(arg, "optimise", 1)) {
316 /* Enable entropy parm optimization. */
317#ifdef ENTROPY_OPT_SUPPORTED
318 cinfo->optimize_coding = TRUE;
319#else
DRCab706232013-01-18 23:42:31 +0000320 fprintf(stderr, "%s: sorry, entropy optimization was not compiled in\n",
DRCe5eaf372014-05-09 18:00:32 +0000321 progname);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000322 exit(EXIT_FAILURE);
323#endif
324
325 } else if (keymatch(arg, "outfile", 4)) {
326 /* Set output file name. */
DRCe5eaf372014-05-09 18:00:32 +0000327 if (++argn >= argc) /* advance to next argument */
328 usage();
329 outfilename = argv[argn]; /* save it away for later use */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000330
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000331 } else if (keymatch(arg, "progressive", 1)) {
332 /* Select simple progressive mode. */
333#ifdef C_PROGRESSIVE_SUPPORTED
334 simple_progressive = TRUE;
335 /* We must postpone execution until num_components is known. */
336#else
DRCab706232013-01-18 23:42:31 +0000337 fprintf(stderr, "%s: sorry, progressive output was not compiled in\n",
DRCe5eaf372014-05-09 18:00:32 +0000338 progname);
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000339 exit(EXIT_FAILURE);
340#endif
341
DRCab706232013-01-18 23:42:31 +0000342 } else if (keymatch(arg, "memdst", 2)) {
343 /* Use in-memory destination manager */
344#if JPEG_LIB_VERSION >= 80 || defined(MEM_SRCDST_SUPPORTED)
345 memdst = TRUE;
346#else
347 fprintf(stderr, "%s: sorry, in-memory destination manager was not compiled in\n",
348 progname);
349 exit(EXIT_FAILURE);
350#endif
351
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000352 } else if (keymatch(arg, "quality", 1)) {
Guido Vollbeding5996a252009-06-27 00:00:00 +0000353 /* Quality ratings (quantization table scaling factors). */
DRCe5eaf372014-05-09 18:00:32 +0000354 if (++argn >= argc) /* advance to next argument */
355 usage();
Guido Vollbeding5996a252009-06-27 00:00:00 +0000356 qualityarg = argv[argn];
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000357
358 } else if (keymatch(arg, "qslots", 2)) {
359 /* Quantization table slot numbers. */
DRCe5eaf372014-05-09 18:00:32 +0000360 if (++argn >= argc) /* advance to next argument */
361 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000362 qslotsarg = argv[argn];
363 /* Must delay setting qslots until after we have processed any
364 * colorspace-determining switches, since jpeg_set_colorspace sets
365 * default quant table numbers.
366 */
367
368 } else if (keymatch(arg, "qtables", 2)) {
369 /* Quantization tables fetched from file. */
DRCe5eaf372014-05-09 18:00:32 +0000370 if (++argn >= argc) /* advance to next argument */
371 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000372 qtablefile = argv[argn];
373 /* We postpone actually reading the file in case -quality comes later. */
374
375 } else if (keymatch(arg, "restart", 1)) {
376 /* Restart interval in MCU rows (or in MCUs with 'b'). */
377 long lval;
378 char ch = 'x';
379
DRCe5eaf372014-05-09 18:00:32 +0000380 if (++argn >= argc) /* advance to next argument */
381 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000382 if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1)
DRCe5eaf372014-05-09 18:00:32 +0000383 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000384 if (lval < 0 || lval > 65535L)
DRCe5eaf372014-05-09 18:00:32 +0000385 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000386 if (ch == 'b' || ch == 'B') {
DRCe5eaf372014-05-09 18:00:32 +0000387 cinfo->restart_interval = (unsigned int) lval;
388 cinfo->restart_in_rows = 0; /* else prior '-restart n' overrides me */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000389 } else {
DRCe5eaf372014-05-09 18:00:32 +0000390 cinfo->restart_in_rows = (int) lval;
391 /* restart_interval will be computed during startup */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000392 }
393
394 } else if (keymatch(arg, "sample", 2)) {
395 /* Set sampling factors. */
DRCe5eaf372014-05-09 18:00:32 +0000396 if (++argn >= argc) /* advance to next argument */
397 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000398 samplearg = argv[argn];
399 /* Must delay setting sample factors until after we have processed any
400 * colorspace-determining switches, since jpeg_set_colorspace sets
401 * default sampling factors.
402 */
403
Guido Vollbeding5996a252009-06-27 00:00:00 +0000404 } else if (keymatch(arg, "scans", 4)) {
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000405 /* Set scan script. */
406#ifdef C_MULTISCAN_FILES_SUPPORTED
DRCe5eaf372014-05-09 18:00:32 +0000407 if (++argn >= argc) /* advance to next argument */
408 usage();
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000409 scansarg = argv[argn];
410 /* We must postpone reading the file in case -progressive appears. */
411#else
DRCab706232013-01-18 23:42:31 +0000412 fprintf(stderr, "%s: sorry, multi-scan output was not compiled in\n",
DRCe5eaf372014-05-09 18:00:32 +0000413 progname);
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000414 exit(EXIT_FAILURE);
415#endif
416
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000417 } else if (keymatch(arg, "smooth", 2)) {
418 /* Set input smoothing factor. */
419 int val;
420
DRCe5eaf372014-05-09 18:00:32 +0000421 if (++argn >= argc) /* advance to next argument */
422 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000423 if (sscanf(argv[argn], "%d", &val) != 1)
DRCe5eaf372014-05-09 18:00:32 +0000424 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000425 if (val < 0 || val > 100)
DRCe5eaf372014-05-09 18:00:32 +0000426 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000427 cinfo->smoothing_factor = val;
428
429 } else if (keymatch(arg, "targa", 1)) {
430 /* Input file is Targa format. */
431 is_targa = TRUE;
432
433 } else {
DRCe5eaf372014-05-09 18:00:32 +0000434 usage(); /* bogus switch */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000435 }
436 }
437
438 /* Post-switch-scanning cleanup */
439
440 if (for_real) {
441
442 /* Set quantization tables for selected quality. */
443 /* Some or all may be overridden if -qtables is present. */
DRCe5eaf372014-05-09 18:00:32 +0000444 if (qualityarg != NULL) /* process -quality if it was present */
Guido Vollbeding5996a252009-06-27 00:00:00 +0000445 if (! set_quality_ratings(cinfo, qualityarg, force_baseline))
DRCe5eaf372014-05-09 18:00:32 +0000446 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000447
DRCe5eaf372014-05-09 18:00:32 +0000448 if (qtablefile != NULL) /* process -qtables if it was present */
Guido Vollbeding5996a252009-06-27 00:00:00 +0000449 if (! read_quant_tables(cinfo, qtablefile, force_baseline))
DRCe5eaf372014-05-09 18:00:32 +0000450 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000451
DRCe5eaf372014-05-09 18:00:32 +0000452 if (qslotsarg != NULL) /* process -qslots if it was present */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000453 if (! set_quant_slots(cinfo, qslotsarg))
DRCe5eaf372014-05-09 18:00:32 +0000454 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000455
DRCe5eaf372014-05-09 18:00:32 +0000456 if (samplearg != NULL) /* process -sample if it was present */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000457 if (! set_sample_factors(cinfo, samplearg))
DRCe5eaf372014-05-09 18:00:32 +0000458 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000459
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000460#ifdef C_PROGRESSIVE_SUPPORTED
DRCe5eaf372014-05-09 18:00:32 +0000461 if (simple_progressive) /* process -progressive; -scans can override */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000462 jpeg_simple_progression(cinfo);
463#endif
464
465#ifdef C_MULTISCAN_FILES_SUPPORTED
DRCe5eaf372014-05-09 18:00:32 +0000466 if (scansarg != NULL) /* process -scans if it was present */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000467 if (! read_scan_script(cinfo, scansarg))
DRCe5eaf372014-05-09 18:00:32 +0000468 usage();
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000469#endif
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000470 }
471
DRCe5eaf372014-05-09 18:00:32 +0000472 return argn; /* return index of next arg (file name) */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000473}
474
475
476/*
477 * The main program.
478 */
479
Thomas G. Lane489583f1996-02-07 00:00:00 +0000480int
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000481main (int argc, char **argv)
482{
483 struct jpeg_compress_struct cinfo;
484 struct jpeg_error_mgr jerr;
485#ifdef PROGRESS_REPORT
486 struct cdjpeg_progress_mgr progress;
487#endif
488 int file_index;
489 cjpeg_source_ptr src_mgr;
490 FILE * input_file;
DRCab706232013-01-18 23:42:31 +0000491 FILE * output_file = NULL;
492 unsigned char *outbuffer = NULL;
493 unsigned long outsize = 0;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000494 JDIMENSION num_scanlines;
495
496 /* On Mac, fetch a command line. */
497#ifdef USE_CCOMMAND
498 argc = ccommand(&argv);
499#endif
500
501 progname = argv[0];
502 if (progname == NULL || progname[0] == 0)
DRCe5eaf372014-05-09 18:00:32 +0000503 progname = "cjpeg"; /* in case C library doesn't provide it */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000504
505 /* Initialize the JPEG compression object with default error handling. */
506 cinfo.err = jpeg_std_error(&jerr);
507 jpeg_create_compress(&cinfo);
508 /* Add some application-specific error messages (from cderror.h) */
Thomas G. Lane9ba2f5e1994-12-07 00:00:00 +0000509 jerr.addon_message_table = cdjpeg_message_table;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000510 jerr.first_addon_message = JMSG_FIRSTADDONCODE;
511 jerr.last_addon_message = JMSG_LASTADDONCODE;
512
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000513 /* Initialize JPEG parameters.
514 * Much of this may be overridden later.
515 * In particular, we don't yet know the input file's color space,
516 * but we need to provide some value for jpeg_set_defaults() to work.
517 */
518
519 cinfo.in_color_space = JCS_RGB; /* arbitrary guess */
520 jpeg_set_defaults(&cinfo);
521
522 /* Scan command line to find file names.
523 * It is convenient to use just one switch-parsing routine, but the switch
524 * values read here are ignored; we will rescan the switches after opening
525 * the input file.
526 */
527
528 file_index = parse_switches(&cinfo, argc, argv, 0, FALSE);
529
530#ifdef TWO_FILE_COMMANDLINE
DRCab706232013-01-18 23:42:31 +0000531 if (!memdst) {
532 /* Must have either -outfile switch or explicit output file name */
533 if (outfilename == NULL) {
534 if (file_index != argc-2) {
535 fprintf(stderr, "%s: must name one input and one output file\n",
536 progname);
537 usage();
538 }
539 outfilename = argv[file_index+1];
540 } else {
541 if (file_index != argc-1) {
542 fprintf(stderr, "%s: must name one input and one output file\n",
543 progname);
544 usage();
545 }
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000546 }
547 }
548#else
549 /* Unix style: expect zero or one file name */
550 if (file_index < argc-1) {
551 fprintf(stderr, "%s: only one input file\n", progname);
552 usage();
553 }
554#endif /* TWO_FILE_COMMANDLINE */
555
556 /* Open the input file. */
557 if (file_index < argc) {
558 if ((input_file = fopen(argv[file_index], READ_BINARY)) == NULL) {
559 fprintf(stderr, "%s: can't open %s\n", progname, argv[file_index]);
560 exit(EXIT_FAILURE);
561 }
562 } else {
563 /* default input file is stdin */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000564 input_file = read_stdin();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000565 }
566
567 /* Open the output file. */
568 if (outfilename != NULL) {
569 if ((output_file = fopen(outfilename, WRITE_BINARY)) == NULL) {
570 fprintf(stderr, "%s: can't open %s\n", progname, outfilename);
571 exit(EXIT_FAILURE);
572 }
DRCab706232013-01-18 23:42:31 +0000573 } else if (!memdst) {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000574 /* default output file is stdout */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000575 output_file = write_stdout();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000576 }
577
578#ifdef PROGRESS_REPORT
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000579 start_progress_monitor((j_common_ptr) &cinfo, &progress);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000580#endif
581
582 /* Figure out the input file format, and set up to read it. */
583 src_mgr = select_file_type(&cinfo, input_file);
584 src_mgr->input_file = input_file;
585
586 /* Read the input file header to obtain file size & colorspace. */
587 (*src_mgr->start_input) (&cinfo, src_mgr);
588
589 /* Now that we know input colorspace, fix colorspace-dependent defaults */
590 jpeg_default_colorspace(&cinfo);
591
592 /* Adjust default compression parameters by re-parsing the options */
593 file_index = parse_switches(&cinfo, argc, argv, 0, TRUE);
594
595 /* Specify data destination for compression */
DRCab706232013-01-18 23:42:31 +0000596#if JPEG_LIB_VERSION >= 80 || defined(MEM_SRCDST_SUPPORTED)
597 if (memdst)
598 jpeg_mem_dest(&cinfo, &outbuffer, &outsize);
599 else
600#endif
601 jpeg_stdio_dest(&cinfo, output_file);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000602
603 /* Start compressor */
604 jpeg_start_compress(&cinfo, TRUE);
605
606 /* Process data */
607 while (cinfo.next_scanline < cinfo.image_height) {
608 num_scanlines = (*src_mgr->get_pixel_rows) (&cinfo, src_mgr);
609 (void) jpeg_write_scanlines(&cinfo, src_mgr->buffer, num_scanlines);
610 }
611
612 /* Finish compression and release memory */
613 (*src_mgr->finish_input) (&cinfo, src_mgr);
614 jpeg_finish_compress(&cinfo);
615 jpeg_destroy_compress(&cinfo);
616
Thomas G. Lane9ba2f5e1994-12-07 00:00:00 +0000617 /* Close files, if we opened them */
618 if (input_file != stdin)
619 fclose(input_file);
DRCab706232013-01-18 23:42:31 +0000620 if (output_file != stdout && output_file != NULL)
Thomas G. Lane9ba2f5e1994-12-07 00:00:00 +0000621 fclose(output_file);
622
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000623#ifdef PROGRESS_REPORT
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000624 end_progress_monitor((j_common_ptr) &cinfo);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000625#endif
626
DRCab706232013-01-18 23:42:31 +0000627 if (memdst) {
628 fprintf(stderr, "Compressed size: %lu bytes\n", outsize);
629 if (outbuffer != NULL)
630 free(outbuffer);
631 }
632
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000633 /* All done. */
634 exit(jerr.num_warnings ? EXIT_WARNING : EXIT_SUCCESS);
DRCe5eaf372014-05-09 18:00:32 +0000635 return 0; /* suppress no-return-value warnings */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000636}