blob: e8075102c6e422fd7c263d7a71f94610f1572b88 [file] [log] [blame]
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +00001/*
2 * cjpeg.c
3 *
noel@chromium.org3395bcc2014-04-14 06:56:00 +00004 * This file was part of the Independent JPEG Group's software:
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +00005 * Copyright (C) 1991-1998, Thomas G. Lane.
noel@chromium.org3395bcc2014-04-14 06:56:00 +00006 * Modified 2003-2011 by Guido Vollbeding.
7 * libjpeg-turbo Modifications:
Chris Blumecca8c4d2019-03-01 01:09:50 -08008 * Copyright (C) 2010, 2013-2014, 2017, D. R. Commander.
Tom Hudson0d47d2d2016-05-04 13:22:56 -04009 * For conditions of distribution and use, see the accompanying README.ijg
10 * file.
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +000011 *
12 * This file contains a command-line user interface for the JPEG compressor.
13 * It should work on any system with Unix- or MS-DOS-style command lines.
14 *
15 * Two different command line styles are permitted, depending on the
16 * compile-time switch TWO_FILE_COMMANDLINE:
Tom Hudson0d47d2d2016-05-04 13:22:56 -040017 * cjpeg [options] inputfile outputfile
18 * cjpeg [options] [inputfile]
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +000019 * In the second style, output is always to standard output, which you'd
20 * normally redirect to a file or pipe to some other program. Input is
21 * either from a named file or from standard input (typically redirected).
22 * The second style is convenient on Unix but is unhelpful on systems that
23 * don't support pipes. Also, you MUST use the first style if your system
24 * doesn't do binary I/O to stdin/stdout.
25 * To simplify script writing, the "-outfile" switch is provided. The syntax
Tom Hudson0d47d2d2016-05-04 13:22:56 -040026 * cjpeg [options] -outfile outputfile inputfile
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +000027 * works regardless of which command line style is used.
28 */
29
Tom Hudson0d47d2d2016-05-04 13:22:56 -040030#include "cdjpeg.h" /* Common decls for cjpeg/djpeg applications */
31#include "jversion.h" /* for version message */
32#include "jconfigint.h"
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +000033
Chris Blumecca8c4d2019-03-01 01:09:50 -080034#ifndef HAVE_STDLIB_H /* <stdlib.h> should declare malloc(),free() */
35extern void *malloc(size_t size);
36extern void free(void *ptr);
37#endif
38
Tom Hudson0d47d2d2016-05-04 13:22:56 -040039#ifdef USE_CCOMMAND /* command-line reader for Macintosh */
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +000040#ifdef __MWERKS__
41#include <SIOUX.h> /* Metrowerks needs this */
Tom Hudson0d47d2d2016-05-04 13:22:56 -040042#include <console.h> /* ... and this */
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +000043#endif
44#ifdef THINK_C
Tom Hudson0d47d2d2016-05-04 13:22:56 -040045#include <console.h> /* Think declares it here */
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +000046#endif
47#endif
48
49
50/* Create the add-on message string table. */
51
Chris Blumecca8c4d2019-03-01 01:09:50 -080052#define JMESSAGE(code, string) string,
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +000053
54static const char * const cdjpeg_message_table[] = {
55#include "cderror.h"
56 NULL
57};
58
59
60/*
61 * This routine determines what format the input file is,
62 * and selects the appropriate input-reading module.
63 *
64 * To determine which family of input formats the file belongs to,
65 * we may look only at the first byte of the file, since C does not
66 * guarantee that more than one character can be pushed back with ungetc.
67 * Looking at additional bytes would require one of these approaches:
68 * 1) assume we can fseek() the input file (fails for piped input);
69 * 2) assume we can push back more than one character (works in
70 * some C implementations, but unportable);
71 * 3) provide our own buffering (breaks input readers that want to use
72 * stdio directly, such as the RLE library);
73 * or 4) don't put back the data, and modify the input_init methods to assume
74 * they start reading after the start of file (also breaks RLE library).
75 * #1 is attractive for MS-DOS but is untenable on Unix.
76 *
77 * The most portable solution for file types that can't be identified by their
78 * first byte is to make the user tell us what they are. This is also the
79 * only approach for "raw" file types that contain only arbitrary values.
80 * We presently apply this method for Targa files. Most of the time Targa
81 * files start with 0x00, so we recognize that case. Potentially, however,
82 * a Targa file could start with any byte value (byte 0 is the length of the
83 * seldom-used ID field), so we provide a switch to force Targa input mode.
84 */
85
Tom Hudson0d47d2d2016-05-04 13:22:56 -040086static boolean is_targa; /* records user -targa switch */
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +000087
88
89LOCAL(cjpeg_source_ptr)
Chris Blumecca8c4d2019-03-01 01:09:50 -080090select_file_type(j_compress_ptr cinfo, FILE *infile)
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +000091{
92 int c;
93
94 if (is_targa) {
95#ifdef TARGA_SUPPORTED
96 return jinit_read_targa(cinfo);
97#else
98 ERREXIT(cinfo, JERR_TGA_NOTCOMP);
99#endif
100 }
101
102 if ((c = getc(infile)) == EOF)
103 ERREXIT(cinfo, JERR_INPUT_EMPTY);
104 if (ungetc(c, infile) == EOF)
105 ERREXIT(cinfo, JERR_UNGETC_FAILED);
106
107 switch (c) {
108#ifdef BMP_SUPPORTED
109 case 'B':
Chris Blumecca8c4d2019-03-01 01:09:50 -0800110 return jinit_read_bmp(cinfo, TRUE);
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000111#endif
112#ifdef GIF_SUPPORTED
113 case 'G':
114 return jinit_read_gif(cinfo);
115#endif
116#ifdef PPM_SUPPORTED
117 case 'P':
118 return jinit_read_ppm(cinfo);
119#endif
120#ifdef RLE_SUPPORTED
121 case 'R':
122 return jinit_read_rle(cinfo);
123#endif
124#ifdef TARGA_SUPPORTED
125 case 0x00:
126 return jinit_read_targa(cinfo);
127#endif
128 default:
129 ERREXIT(cinfo, JERR_UNKNOWN_FORMAT);
130 break;
131 }
132
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400133 return NULL; /* suppress compiler warnings */
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000134}
135
136
137/*
138 * Argument-parsing code.
139 * The switch parser is designed to be useful with DOS-style command line
140 * syntax, ie, intermixed switches and file names, where only the switches
141 * to the left of a given file name affect processing of that file.
142 * The main program in this file doesn't actually use this capability...
143 */
144
145
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400146static const char *progname; /* program name for error messages */
Chris Blumecca8c4d2019-03-01 01:09:50 -0800147static char *icc_filename; /* for -icc switch */
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400148static char *outfilename; /* for -outfile switch */
149boolean memdst; /* for -memdst switch */
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000150
151
152LOCAL(void)
Chris Blumecca8c4d2019-03-01 01:09:50 -0800153usage(void)
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000154/* complain about bad command line */
155{
156 fprintf(stderr, "usage: %s [switches] ", progname);
157#ifdef TWO_FILE_COMMANDLINE
158 fprintf(stderr, "inputfile outputfile\n");
159#else
160 fprintf(stderr, "[inputfile]\n");
161#endif
162
163 fprintf(stderr, "Switches (names may be abbreviated):\n");
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400164 fprintf(stderr, " -quality N[,...] Compression quality (0..100; 5-95 is most useful range,\n");
165 fprintf(stderr, " default is 75)\n");
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000166 fprintf(stderr, " -grayscale Create monochrome JPEG file\n");
noel@chromium.org3395bcc2014-04-14 06:56:00 +0000167 fprintf(stderr, " -rgb Create RGB JPEG file\n");
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000168#ifdef ENTROPY_OPT_SUPPORTED
169 fprintf(stderr, " -optimize Optimize Huffman table (smaller file, but slow compression)\n");
170#endif
171#ifdef C_PROGRESSIVE_SUPPORTED
172 fprintf(stderr, " -progressive Create progressive JPEG file\n");
173#endif
174#ifdef TARGA_SUPPORTED
175 fprintf(stderr, " -targa Input file is Targa format (usually not needed)\n");
176#endif
177 fprintf(stderr, "Switches for advanced users:\n");
hbono@chromium.orgdf5ffdd2012-05-11 07:46:03 +0000178#ifdef C_ARITH_CODING_SUPPORTED
179 fprintf(stderr, " -arithmetic Use arithmetic coding\n");
180#endif
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000181#ifdef DCT_ISLOW_SUPPORTED
182 fprintf(stderr, " -dct int Use integer DCT method%s\n",
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400183 (JDCT_DEFAULT == JDCT_ISLOW ? " (default)" : ""));
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000184#endif
185#ifdef DCT_IFAST_SUPPORTED
186 fprintf(stderr, " -dct fast Use fast integer DCT (less accurate)%s\n",
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400187 (JDCT_DEFAULT == JDCT_IFAST ? " (default)" : ""));
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000188#endif
189#ifdef DCT_FLOAT_SUPPORTED
190 fprintf(stderr, " -dct float Use floating-point DCT method%s\n",
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400191 (JDCT_DEFAULT == JDCT_FLOAT ? " (default)" : ""));
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000192#endif
Chris Blumecca8c4d2019-03-01 01:09:50 -0800193 fprintf(stderr, " -icc FILE Embed ICC profile contained in FILE\n");
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000194 fprintf(stderr, " -restart N Set restart interval in rows, or in blocks with B\n");
195#ifdef INPUT_SMOOTHING_SUPPORTED
196 fprintf(stderr, " -smooth N Smooth dithered input (N=1..100 is strength)\n");
197#endif
198 fprintf(stderr, " -maxmemory N Maximum memory to use (in kbytes)\n");
199 fprintf(stderr, " -outfile name Specify name for output file\n");
noel@chromium.org3395bcc2014-04-14 06:56:00 +0000200#if JPEG_LIB_VERSION >= 80 || defined(MEM_SRCDST_SUPPORTED)
201 fprintf(stderr, " -memdst Compress to memory instead of file (useful for benchmarking)\n");
202#endif
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000203 fprintf(stderr, " -verbose or -debug Emit debug output\n");
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400204 fprintf(stderr, " -version Print version information and exit\n");
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000205 fprintf(stderr, "Switches for wizards:\n");
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000206 fprintf(stderr, " -baseline Force baseline quantization tables\n");
Chris Blumecca8c4d2019-03-01 01:09:50 -0800207 fprintf(stderr, " -qtables FILE Use quantization tables given in FILE\n");
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000208 fprintf(stderr, " -qslots N[,...] Set component quantization tables\n");
209 fprintf(stderr, " -sample HxV[,...] Set component sampling factors\n");
210#ifdef C_MULTISCAN_FILES_SUPPORTED
Chris Blumecca8c4d2019-03-01 01:09:50 -0800211 fprintf(stderr, " -scans FILE Create multi-scan JPEG per script FILE\n");
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000212#endif
213 exit(EXIT_FAILURE);
214}
215
216
217LOCAL(int)
Chris Blumecca8c4d2019-03-01 01:09:50 -0800218parse_switches(j_compress_ptr cinfo, int argc, char **argv,
219 int last_file_arg_seen, boolean for_real)
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000220/* Parse optional switches.
221 * Returns argv[] index of first file-name argument (== argc if none).
222 * Any file names with indexes <= last_file_arg_seen are ignored;
223 * they have presumably been processed in a previous iteration.
224 * (Pass 0 for last_file_arg_seen on the first or only iteration.)
225 * for_real is FALSE on the first (dummy) pass; we may skip any expensive
226 * processing.
227 */
228{
229 int argn;
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400230 char *arg;
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000231 boolean force_baseline;
232 boolean simple_progressive;
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400233 char *qualityarg = NULL; /* saves -quality parm if any */
234 char *qtablefile = NULL; /* saves -qtables filename if any */
235 char *qslotsarg = NULL; /* saves -qslots parm if any */
236 char *samplearg = NULL; /* saves -sample parm if any */
237 char *scansarg = NULL; /* saves -scans parm if any */
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000238
239 /* Set up default JPEG parameters. */
hbono@chromium.org98626972011-08-03 03:13:08 +0000240
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400241 force_baseline = FALSE; /* by default, allow 16-bit quantizers */
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000242 simple_progressive = FALSE;
243 is_targa = FALSE;
Chris Blumecca8c4d2019-03-01 01:09:50 -0800244 icc_filename = NULL;
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000245 outfilename = NULL;
noel@chromium.org3395bcc2014-04-14 06:56:00 +0000246 memdst = FALSE;
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000247 cinfo->err->trace_level = 0;
248
249 /* Scan command line options, adjust parameters */
250
251 for (argn = 1; argn < argc; argn++) {
252 arg = argv[argn];
253 if (*arg != '-') {
254 /* Not a switch, must be a file name argument */
255 if (argn <= last_file_arg_seen) {
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400256 outfilename = NULL; /* -outfile applies to just one input file */
257 continue; /* ignore this name if previously processed */
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000258 }
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400259 break; /* else done parsing switches */
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000260 }
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400261 arg++; /* advance past switch marker character */
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000262
263 if (keymatch(arg, "arithmetic", 1)) {
264 /* Use arithmetic coding. */
265#ifdef C_ARITH_CODING_SUPPORTED
266 cinfo->arith_code = TRUE;
267#else
268 fprintf(stderr, "%s: sorry, arithmetic coding not supported\n",
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400269 progname);
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000270 exit(EXIT_FAILURE);
271#endif
272
273 } else if (keymatch(arg, "baseline", 1)) {
274 /* Force baseline-compatible output (8-bit quantizer values). */
275 force_baseline = TRUE;
276
277 } else if (keymatch(arg, "dct", 2)) {
278 /* Select DCT algorithm. */
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400279 if (++argn >= argc) /* advance to next argument */
280 usage();
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000281 if (keymatch(argv[argn], "int", 1)) {
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400282 cinfo->dct_method = JDCT_ISLOW;
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000283 } else if (keymatch(argv[argn], "fast", 2)) {
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400284 cinfo->dct_method = JDCT_IFAST;
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000285 } else if (keymatch(argv[argn], "float", 2)) {
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400286 cinfo->dct_method = JDCT_FLOAT;
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000287 } else
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400288 usage();
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000289
290 } else if (keymatch(arg, "debug", 1) || keymatch(arg, "verbose", 1)) {
291 /* Enable debug printouts. */
292 /* On first -d, print version identification */
293 static boolean printed_version = FALSE;
294
Chris Blumecca8c4d2019-03-01 01:09:50 -0800295 if (!printed_version) {
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400296 fprintf(stderr, "%s version %s (build %s)\n",
297 PACKAGE_NAME, VERSION, BUILD);
298 fprintf(stderr, "%s\n\n", JCOPYRIGHT);
299 fprintf(stderr, "Emulating The Independent JPEG Group's software, version %s\n\n",
300 JVERSION);
301 printed_version = TRUE;
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000302 }
303 cinfo->err->trace_level++;
304
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400305 } else if (keymatch(arg, "version", 4)) {
306 fprintf(stderr, "%s version %s (build %s)\n",
307 PACKAGE_NAME, VERSION, BUILD);
308 exit(EXIT_SUCCESS);
309
Chris Blumecca8c4d2019-03-01 01:09:50 -0800310 } else if (keymatch(arg, "grayscale", 2) ||
311 keymatch(arg, "greyscale", 2)) {
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000312 /* Force a monochrome JPEG file to be generated. */
313 jpeg_set_colorspace(cinfo, JCS_GRAYSCALE);
314
noel@chromium.org3395bcc2014-04-14 06:56:00 +0000315 } else if (keymatch(arg, "rgb", 3)) {
316 /* Force an RGB JPEG file to be generated. */
317 jpeg_set_colorspace(cinfo, JCS_RGB);
318
Chris Blumecca8c4d2019-03-01 01:09:50 -0800319 } else if (keymatch(arg, "icc", 1)) {
320 /* Set ICC filename. */
321 if (++argn >= argc) /* advance to next argument */
322 usage();
323 icc_filename = argv[argn];
324
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000325 } else if (keymatch(arg, "maxmemory", 3)) {
326 /* Maximum memory in Kb (or Mb with 'm'). */
327 long lval;
328 char ch = 'x';
329
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400330 if (++argn >= argc) /* advance to next argument */
331 usage();
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000332 if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1)
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400333 usage();
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000334 if (ch == 'm' || ch == 'M')
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400335 lval *= 1000L;
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000336 cinfo->mem->max_memory_to_use = lval * 1000L;
337
338 } else if (keymatch(arg, "optimize", 1) || keymatch(arg, "optimise", 1)) {
339 /* Enable entropy parm optimization. */
340#ifdef ENTROPY_OPT_SUPPORTED
341 cinfo->optimize_coding = TRUE;
342#else
noel@chromium.org3395bcc2014-04-14 06:56:00 +0000343 fprintf(stderr, "%s: sorry, entropy optimization was not compiled in\n",
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400344 progname);
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000345 exit(EXIT_FAILURE);
346#endif
347
348 } else if (keymatch(arg, "outfile", 4)) {
349 /* Set output file name. */
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400350 if (++argn >= argc) /* advance to next argument */
351 usage();
352 outfilename = argv[argn]; /* save it away for later use */
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000353
354 } else if (keymatch(arg, "progressive", 1)) {
355 /* Select simple progressive mode. */
356#ifdef C_PROGRESSIVE_SUPPORTED
357 simple_progressive = TRUE;
358 /* We must postpone execution until num_components is known. */
359#else
noel@chromium.org3395bcc2014-04-14 06:56:00 +0000360 fprintf(stderr, "%s: sorry, progressive output was not compiled in\n",
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400361 progname);
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000362 exit(EXIT_FAILURE);
363#endif
364
noel@chromium.org3395bcc2014-04-14 06:56:00 +0000365 } else if (keymatch(arg, "memdst", 2)) {
366 /* Use in-memory destination manager */
367#if JPEG_LIB_VERSION >= 80 || defined(MEM_SRCDST_SUPPORTED)
368 memdst = TRUE;
369#else
370 fprintf(stderr, "%s: sorry, in-memory destination manager was not compiled in\n",
371 progname);
372 exit(EXIT_FAILURE);
373#endif
374
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000375 } else if (keymatch(arg, "quality", 1)) {
hbono@chromium.org98626972011-08-03 03:13:08 +0000376 /* Quality ratings (quantization table scaling factors). */
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400377 if (++argn >= argc) /* advance to next argument */
378 usage();
hbono@chromium.org98626972011-08-03 03:13:08 +0000379 qualityarg = argv[argn];
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000380
381 } else if (keymatch(arg, "qslots", 2)) {
382 /* Quantization table slot numbers. */
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400383 if (++argn >= argc) /* advance to next argument */
384 usage();
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000385 qslotsarg = argv[argn];
386 /* Must delay setting qslots until after we have processed any
387 * colorspace-determining switches, since jpeg_set_colorspace sets
388 * default quant table numbers.
389 */
390
391 } else if (keymatch(arg, "qtables", 2)) {
392 /* Quantization tables fetched from file. */
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400393 if (++argn >= argc) /* advance to next argument */
394 usage();
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000395 qtablefile = argv[argn];
396 /* We postpone actually reading the file in case -quality comes later. */
397
398 } else if (keymatch(arg, "restart", 1)) {
399 /* Restart interval in MCU rows (or in MCUs with 'b'). */
400 long lval;
401 char ch = 'x';
402
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400403 if (++argn >= argc) /* advance to next argument */
404 usage();
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000405 if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1)
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400406 usage();
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000407 if (lval < 0 || lval > 65535L)
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400408 usage();
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000409 if (ch == 'b' || ch == 'B') {
Chris Blumecca8c4d2019-03-01 01:09:50 -0800410 cinfo->restart_interval = (unsigned int)lval;
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400411 cinfo->restart_in_rows = 0; /* else prior '-restart n' overrides me */
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000412 } else {
Chris Blumecca8c4d2019-03-01 01:09:50 -0800413 cinfo->restart_in_rows = (int)lval;
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400414 /* restart_interval will be computed during startup */
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000415 }
416
417 } else if (keymatch(arg, "sample", 2)) {
418 /* Set sampling factors. */
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400419 if (++argn >= argc) /* advance to next argument */
420 usage();
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000421 samplearg = argv[argn];
422 /* Must delay setting sample factors until after we have processed any
423 * colorspace-determining switches, since jpeg_set_colorspace sets
424 * default sampling factors.
425 */
426
hbono@chromium.org98626972011-08-03 03:13:08 +0000427 } else if (keymatch(arg, "scans", 4)) {
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000428 /* Set scan script. */
429#ifdef C_MULTISCAN_FILES_SUPPORTED
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400430 if (++argn >= argc) /* advance to next argument */
431 usage();
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000432 scansarg = argv[argn];
433 /* We must postpone reading the file in case -progressive appears. */
434#else
noel@chromium.org3395bcc2014-04-14 06:56:00 +0000435 fprintf(stderr, "%s: sorry, multi-scan output was not compiled in\n",
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400436 progname);
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000437 exit(EXIT_FAILURE);
438#endif
439
440 } else if (keymatch(arg, "smooth", 2)) {
441 /* Set input smoothing factor. */
442 int val;
443
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400444 if (++argn >= argc) /* advance to next argument */
445 usage();
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000446 if (sscanf(argv[argn], "%d", &val) != 1)
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400447 usage();
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000448 if (val < 0 || val > 100)
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400449 usage();
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000450 cinfo->smoothing_factor = val;
451
452 } else if (keymatch(arg, "targa", 1)) {
453 /* Input file is Targa format. */
454 is_targa = TRUE;
455
456 } else {
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400457 usage(); /* bogus switch */
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000458 }
459 }
460
461 /* Post-switch-scanning cleanup */
462
463 if (for_real) {
464
465 /* Set quantization tables for selected quality. */
466 /* Some or all may be overridden if -qtables is present. */
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400467 if (qualityarg != NULL) /* process -quality if it was present */
Chris Blumecca8c4d2019-03-01 01:09:50 -0800468 if (!set_quality_ratings(cinfo, qualityarg, force_baseline))
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400469 usage();
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000470
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400471 if (qtablefile != NULL) /* process -qtables if it was present */
Chris Blumecca8c4d2019-03-01 01:09:50 -0800472 if (!read_quant_tables(cinfo, qtablefile, force_baseline))
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400473 usage();
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000474
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400475 if (qslotsarg != NULL) /* process -qslots if it was present */
Chris Blumecca8c4d2019-03-01 01:09:50 -0800476 if (!set_quant_slots(cinfo, qslotsarg))
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400477 usage();
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000478
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400479 if (samplearg != NULL) /* process -sample if it was present */
Chris Blumecca8c4d2019-03-01 01:09:50 -0800480 if (!set_sample_factors(cinfo, samplearg))
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400481 usage();
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000482
483#ifdef C_PROGRESSIVE_SUPPORTED
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400484 if (simple_progressive) /* process -progressive; -scans can override */
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000485 jpeg_simple_progression(cinfo);
486#endif
487
488#ifdef C_MULTISCAN_FILES_SUPPORTED
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400489 if (scansarg != NULL) /* process -scans if it was present */
Chris Blumecca8c4d2019-03-01 01:09:50 -0800490 if (!read_scan_script(cinfo, scansarg))
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400491 usage();
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000492#endif
493 }
494
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400495 return argn; /* return index of next arg (file name) */
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000496}
497
498
499/*
500 * The main program.
501 */
502
503int
Jonathan Wright5961ab92020-06-21 13:11:49 +0100504#ifdef GTEST
505cjpeg(int argc, char **argv)
506#else
Chris Blumecca8c4d2019-03-01 01:09:50 -0800507main(int argc, char **argv)
Jonathan Wright5961ab92020-06-21 13:11:49 +0100508#endif
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000509{
510 struct jpeg_compress_struct cinfo;
511 struct jpeg_error_mgr jerr;
512#ifdef PROGRESS_REPORT
513 struct cdjpeg_progress_mgr progress;
514#endif
515 int file_index;
516 cjpeg_source_ptr src_mgr;
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400517 FILE *input_file;
Chris Blumecca8c4d2019-03-01 01:09:50 -0800518 FILE *icc_file;
519 JOCTET *icc_profile = NULL;
520 long icc_len = 0;
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400521 FILE *output_file = NULL;
noel@chromium.org3395bcc2014-04-14 06:56:00 +0000522 unsigned char *outbuffer = NULL;
523 unsigned long outsize = 0;
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000524 JDIMENSION num_scanlines;
525
526 /* On Mac, fetch a command line. */
527#ifdef USE_CCOMMAND
528 argc = ccommand(&argv);
529#endif
530
531 progname = argv[0];
532 if (progname == NULL || progname[0] == 0)
Tom Hudson0d47d2d2016-05-04 13:22:56 -0400533 progname = "cjpeg"; /* in case C library doesn't provide it */
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000534
535 /* Initialize the JPEG compression object with default error handling. */
536 cinfo.err = jpeg_std_error(&jerr);
537 jpeg_create_compress(&cinfo);
538 /* Add some application-specific error messages (from cderror.h) */
539 jerr.addon_message_table = cdjpeg_message_table;
540 jerr.first_addon_message = JMSG_FIRSTADDONCODE;
541 jerr.last_addon_message = JMSG_LASTADDONCODE;
542
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000543 /* Initialize JPEG parameters.
544 * Much of this may be overridden later.
545 * In particular, we don't yet know the input file's color space,
546 * but we need to provide some value for jpeg_set_defaults() to work.
547 */
548
549 cinfo.in_color_space = JCS_RGB; /* arbitrary guess */
550 jpeg_set_defaults(&cinfo);
551
552 /* Scan command line to find file names.
553 * It is convenient to use just one switch-parsing routine, but the switch
554 * values read here are ignored; we will rescan the switches after opening
555 * the input file.
556 */
557
558 file_index = parse_switches(&cinfo, argc, argv, 0, FALSE);
559
560#ifdef TWO_FILE_COMMANDLINE
noel@chromium.org3395bcc2014-04-14 06:56:00 +0000561 if (!memdst) {
562 /* Must have either -outfile switch or explicit output file name */
563 if (outfilename == NULL) {
Chris Blumecca8c4d2019-03-01 01:09:50 -0800564 if (file_index != argc - 2) {
noel@chromium.org3395bcc2014-04-14 06:56:00 +0000565 fprintf(stderr, "%s: must name one input and one output file\n",
566 progname);
567 usage();
568 }
Chris Blumecca8c4d2019-03-01 01:09:50 -0800569 outfilename = argv[file_index + 1];
noel@chromium.org3395bcc2014-04-14 06:56:00 +0000570 } else {
Chris Blumecca8c4d2019-03-01 01:09:50 -0800571 if (file_index != argc - 1) {
noel@chromium.org3395bcc2014-04-14 06:56:00 +0000572 fprintf(stderr, "%s: must name one input and one output file\n",
573 progname);
574 usage();
575 }
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000576 }
577 }
578#else
579 /* Unix style: expect zero or one file name */
Chris Blumecca8c4d2019-03-01 01:09:50 -0800580 if (file_index < argc - 1) {
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000581 fprintf(stderr, "%s: only one input file\n", progname);
582 usage();
583 }
584#endif /* TWO_FILE_COMMANDLINE */
585
586 /* Open the input file. */
587 if (file_index < argc) {
588 if ((input_file = fopen(argv[file_index], READ_BINARY)) == NULL) {
589 fprintf(stderr, "%s: can't open %s\n", progname, argv[file_index]);
Jonathan Wright5961ab92020-06-21 13:11:49 +0100590 return EXIT_FAILURE;
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000591 }
592 } else {
593 /* default input file is stdin */
594 input_file = read_stdin();
595 }
596
597 /* Open the output file. */
598 if (outfilename != NULL) {
599 if ((output_file = fopen(outfilename, WRITE_BINARY)) == NULL) {
600 fprintf(stderr, "%s: can't open %s\n", progname, outfilename);
Jonathan Wright5961ab92020-06-21 13:11:49 +0100601 return EXIT_FAILURE;
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000602 }
noel@chromium.org3395bcc2014-04-14 06:56:00 +0000603 } else if (!memdst) {
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000604 /* default output file is stdout */
605 output_file = write_stdout();
606 }
607
Chris Blumecca8c4d2019-03-01 01:09:50 -0800608 if (icc_filename != NULL) {
609 if ((icc_file = fopen(icc_filename, READ_BINARY)) == NULL) {
610 fprintf(stderr, "%s: can't open %s\n", progname, icc_filename);
Jonathan Wright5961ab92020-06-21 13:11:49 +0100611 return EXIT_FAILURE;
Chris Blumecca8c4d2019-03-01 01:09:50 -0800612 }
613 if (fseek(icc_file, 0, SEEK_END) < 0 ||
614 (icc_len = ftell(icc_file)) < 1 ||
615 fseek(icc_file, 0, SEEK_SET) < 0) {
616 fprintf(stderr, "%s: can't determine size of %s\n", progname,
617 icc_filename);
Jonathan Wright5961ab92020-06-21 13:11:49 +0100618 return EXIT_FAILURE;
Chris Blumecca8c4d2019-03-01 01:09:50 -0800619 }
620 if ((icc_profile = (JOCTET *)malloc(icc_len)) == NULL) {
621 fprintf(stderr, "%s: can't allocate memory for ICC profile\n", progname);
622 fclose(icc_file);
Jonathan Wright5961ab92020-06-21 13:11:49 +0100623 return EXIT_FAILURE;
Chris Blumecca8c4d2019-03-01 01:09:50 -0800624 }
625 if (fread(icc_profile, icc_len, 1, icc_file) < 1) {
626 fprintf(stderr, "%s: can't read ICC profile from %s\n", progname,
627 icc_filename);
628 free(icc_profile);
629 fclose(icc_file);
Jonathan Wright5961ab92020-06-21 13:11:49 +0100630 return EXIT_FAILURE;
Chris Blumecca8c4d2019-03-01 01:09:50 -0800631 }
632 fclose(icc_file);
633 }
634
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000635#ifdef PROGRESS_REPORT
Chris Blumecca8c4d2019-03-01 01:09:50 -0800636 start_progress_monitor((j_common_ptr)&cinfo, &progress);
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000637#endif
638
639 /* Figure out the input file format, and set up to read it. */
640 src_mgr = select_file_type(&cinfo, input_file);
641 src_mgr->input_file = input_file;
642
643 /* Read the input file header to obtain file size & colorspace. */
644 (*src_mgr->start_input) (&cinfo, src_mgr);
645
646 /* Now that we know input colorspace, fix colorspace-dependent defaults */
647 jpeg_default_colorspace(&cinfo);
648
649 /* Adjust default compression parameters by re-parsing the options */
650 file_index = parse_switches(&cinfo, argc, argv, 0, TRUE);
651
652 /* Specify data destination for compression */
noel@chromium.org3395bcc2014-04-14 06:56:00 +0000653#if JPEG_LIB_VERSION >= 80 || defined(MEM_SRCDST_SUPPORTED)
654 if (memdst)
655 jpeg_mem_dest(&cinfo, &outbuffer, &outsize);
656 else
657#endif
658 jpeg_stdio_dest(&cinfo, output_file);
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000659
660 /* Start compressor */
661 jpeg_start_compress(&cinfo, TRUE);
662
Chris Blumecca8c4d2019-03-01 01:09:50 -0800663 if (icc_profile != NULL)
664 jpeg_write_icc_profile(&cinfo, icc_profile, (unsigned int)icc_len);
665
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000666 /* Process data */
667 while (cinfo.next_scanline < cinfo.image_height) {
668 num_scanlines = (*src_mgr->get_pixel_rows) (&cinfo, src_mgr);
Chris Blumecca8c4d2019-03-01 01:09:50 -0800669 (void)jpeg_write_scanlines(&cinfo, src_mgr->buffer, num_scanlines);
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000670 }
671
672 /* Finish compression and release memory */
673 (*src_mgr->finish_input) (&cinfo, src_mgr);
674 jpeg_finish_compress(&cinfo);
675 jpeg_destroy_compress(&cinfo);
676
677 /* Close files, if we opened them */
678 if (input_file != stdin)
679 fclose(input_file);
noel@chromium.org3395bcc2014-04-14 06:56:00 +0000680 if (output_file != stdout && output_file != NULL)
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000681 fclose(output_file);
682
683#ifdef PROGRESS_REPORT
Chris Blumecca8c4d2019-03-01 01:09:50 -0800684 end_progress_monitor((j_common_ptr)&cinfo);
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000685#endif
686
noel@chromium.org3395bcc2014-04-14 06:56:00 +0000687 if (memdst) {
688 fprintf(stderr, "Compressed size: %lu bytes\n", outsize);
689 if (outbuffer != NULL)
690 free(outbuffer);
691 }
692
Chris Blumecca8c4d2019-03-01 01:09:50 -0800693 if (icc_profile != NULL)
694 free(icc_profile);
695
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000696 /* All done. */
Jonathan Wright5961ab92020-06-21 13:11:49 +0100697 return (jerr.num_warnings ? EXIT_WARNING : EXIT_SUCCESS);
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +0000698}