blob: 07e7db1422f1df5aee68a6547022f1563cc1f35e [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:
Leon Scroggins IIIbd7903e2018-02-28 14:05:04 -05008 * Copyright (C) 2010, 2013-2014, 2017, D. R. Commander.
Alex Naidis6eb7d372016-10-16 23:10:08 +02009 * For conditions of distribution and use, see the accompanying README.ijg
10 * file.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +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:
DRCe5eaf372014-05-09 18:00:32 +000017 * cjpeg [options] inputfile outputfile
18 * cjpeg [options] [inputfile]
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +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
DRCe5eaf372014-05-09 18:00:32 +000026 * cjpeg [options] -outfile outputfile inputfile
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000027 * works regardless of which command line style is used.
28 */
29
DRCe5eaf372014-05-09 18:00:32 +000030#include "cdjpeg.h" /* Common decls for cjpeg/djpeg applications */
31#include "jversion.h" /* for version message */
DRCff6961f2014-04-20 09:17:11 +000032#include "jconfigint.h"
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000033
Leon Scroggins III3993b372018-07-16 10:43:45 -040034#ifndef HAVE_STDLIB_H /* <stdlib.h> should declare malloc(),free() */
35extern void *malloc(size_t size);
36extern void free(void *ptr);
37#endif
38
DRCe5eaf372014-05-09 18:00:32 +000039#ifdef USE_CCOMMAND /* command-line reader for Macintosh */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000040#ifdef __MWERKS__
Thomas G. Lane489583f1996-02-07 00:00:00 +000041#include <SIOUX.h> /* Metrowerks needs this */
DRCe5eaf372014-05-09 18:00:32 +000042#include <console.h> /* ... and this */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000043#endif
44#ifdef THINK_C
DRCe5eaf372014-05-09 18:00:32 +000045#include <console.h> /* Think declares it here */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000046#endif
47#endif
48
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000049
Thomas G. Lane9ba2f5e1994-12-07 00:00:00 +000050/* Create the add-on message string table. */
51
Leon Scroggins III3993b372018-07-16 10:43:45 -040052#define JMESSAGE(code, string) string,
Thomas G. Lane9ba2f5e1994-12-07 00:00:00 +000053
54static const char * const cdjpeg_message_table[] = {
55#include "cderror.h"
56 NULL
57};
58
59
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000060/*
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
DRCe5eaf372014-05-09 18:00:32 +000086static boolean is_targa; /* records user -targa switch */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000087
88
Thomas G. Lane489583f1996-02-07 00:00:00 +000089LOCAL(cjpeg_source_ptr)
Leon Scroggins III3993b372018-07-16 10:43:45 -040090select_file_type(j_compress_ptr cinfo, FILE *infile)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +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':
Leon Scroggins III3993b372018-07-16 10:43:45 -0400110 return jinit_read_bmp(cinfo, TRUE);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +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
DRCe5eaf372014-05-09 18:00:32 +0000133 return NULL; /* suppress compiler warnings */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000134}
135
136
137/*
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000138 * 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
Alex Naidis6eb7d372016-10-16 23:10:08 +0200146static const char *progname; /* program name for error messages */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400147static char *icc_filename; /* for -icc switch */
Alex Naidis6eb7d372016-10-16 23:10:08 +0200148static char *outfilename; /* for -outfile switch */
149boolean memdst; /* for -memdst switch */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000150
151
Thomas G. Lane489583f1996-02-07 00:00:00 +0000152LOCAL(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400153usage(void)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +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");
Alex Naidis6eb7d372016-10-16 23:10:08 +0200164 fprintf(stderr, " -quality N[,...] Compression quality (0..100; 5-95 is most useful range,\n");
165 fprintf(stderr, " default is 75)\n");
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000166 fprintf(stderr, " -grayscale Create monochrome JPEG file\n");
Guido Vollbeding5829cb22012-01-15 00:00:00 +0000167 fprintf(stderr, " -rgb Create RGB JPEG file\n");
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000168#ifdef ENTROPY_OPT_SUPPORTED
169 fprintf(stderr, " -optimize Optimize Huffman table (smaller file, but slow compression)\n");
170#endif
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000171#ifdef C_PROGRESSIVE_SUPPORTED
172 fprintf(stderr, " -progressive Create progressive JPEG file\n");
173#endif
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000174#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");
DRCd657ba62012-01-27 09:41:20 +0000178#ifdef C_ARITH_CODING_SUPPORTED
179 fprintf(stderr, " -arithmetic Use arithmetic coding\n");
180#endif
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000181#ifdef DCT_ISLOW_SUPPORTED
182 fprintf(stderr, " -dct int Use integer DCT method%s\n",
DRCe5eaf372014-05-09 18:00:32 +0000183 (JDCT_DEFAULT == JDCT_ISLOW ? " (default)" : ""));
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000184#endif
185#ifdef DCT_IFAST_SUPPORTED
186 fprintf(stderr, " -dct fast Use fast integer DCT (less accurate)%s\n",
DRCe5eaf372014-05-09 18:00:32 +0000187 (JDCT_DEFAULT == JDCT_IFAST ? " (default)" : ""));
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000188#endif
189#ifdef DCT_FLOAT_SUPPORTED
190 fprintf(stderr, " -dct float Use floating-point DCT method%s\n",
DRCe5eaf372014-05-09 18:00:32 +0000191 (JDCT_DEFAULT == JDCT_FLOAT ? " (default)" : ""));
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000192#endif
Leon Scroggins III3993b372018-07-16 10:43:45 -0400193 fprintf(stderr, " -icc FILE Embed ICC profile contained in FILE\n");
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +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");
DRCab706232013-01-18 23:42:31 +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
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000203 fprintf(stderr, " -verbose or -debug Emit debug output\n");
DRC9665f5e2014-11-22 04:04:38 +0000204 fprintf(stderr, " -version Print version information and exit\n");
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000205 fprintf(stderr, "Switches for wizards:\n");
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000206 fprintf(stderr, " -baseline Force baseline quantization tables\n");
Leon Scroggins IIIbd7903e2018-02-28 14:05:04 -0500207 fprintf(stderr, " -qtables FILE Use quantization tables given in FILE\n");
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000208 fprintf(stderr, " -qslots N[,...] Set component quantization tables\n");
209 fprintf(stderr, " -sample HxV[,...] Set component sampling factors\n");
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000210#ifdef C_MULTISCAN_FILES_SUPPORTED
Leon Scroggins IIIbd7903e2018-02-28 14:05:04 -0500211 fprintf(stderr, " -scans FILE Create multi-scan JPEG per script FILE\n");
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000212#endif
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000213 exit(EXIT_FAILURE);
214}
215
216
Thomas G. Lane489583f1996-02-07 00:00:00 +0000217LOCAL(int)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400218parse_switches(j_compress_ptr cinfo, int argc, char **argv,
219 int last_file_arg_seen, boolean for_real)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +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;
Alex Naidis6eb7d372016-10-16 23:10:08 +0200230 char *arg;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000231 boolean force_baseline;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000232 boolean simple_progressive;
Alex Naidis6eb7d372016-10-16 23:10:08 +0200233 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 */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000238
239 /* Set up default JPEG parameters. */
Guido Vollbeding5996a252009-06-27 00:00:00 +0000240
DRCe5eaf372014-05-09 18:00:32 +0000241 force_baseline = FALSE; /* by default, allow 16-bit quantizers */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000242 simple_progressive = FALSE;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000243 is_targa = FALSE;
Leon Scroggins III3993b372018-07-16 10:43:45 -0400244 icc_filename = NULL;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000245 outfilename = NULL;
DRCab706232013-01-18 23:42:31 +0000246 memdst = FALSE;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +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) {
DRCe5eaf372014-05-09 18:00:32 +0000256 outfilename = NULL; /* -outfile applies to just one input file */
257 continue; /* ignore this name if previously processed */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000258 }
DRCe5eaf372014-05-09 18:00:32 +0000259 break; /* else done parsing switches */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000260 }
DRCe5eaf372014-05-09 18:00:32 +0000261 arg++; /* advance past switch marker character */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +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",
DRCe5eaf372014-05-09 18:00:32 +0000269 progname);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000270 exit(EXIT_FAILURE);
271#endif
272
273 } else if (keymatch(arg, "baseline", 1)) {
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000274 /* Force baseline-compatible output (8-bit quantizer values). */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000275 force_baseline = TRUE;
276
277 } else if (keymatch(arg, "dct", 2)) {
278 /* Select DCT algorithm. */
DRCe5eaf372014-05-09 18:00:32 +0000279 if (++argn >= argc) /* advance to next argument */
280 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000281 if (keymatch(argv[argn], "int", 1)) {
DRCe5eaf372014-05-09 18:00:32 +0000282 cinfo->dct_method = JDCT_ISLOW;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000283 } else if (keymatch(argv[argn], "fast", 2)) {
DRCe5eaf372014-05-09 18:00:32 +0000284 cinfo->dct_method = JDCT_IFAST;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000285 } else if (keymatch(argv[argn], "float", 2)) {
DRCe5eaf372014-05-09 18:00:32 +0000286 cinfo->dct_method = JDCT_FLOAT;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000287 } else
DRCe5eaf372014-05-09 18:00:32 +0000288 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +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
Leon Scroggins III3993b372018-07-16 10:43:45 -0400295 if (!printed_version) {
DRCe5eaf372014-05-09 18:00:32 +0000296 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;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000302 }
303 cinfo->err->trace_level++;
304
DRC9665f5e2014-11-22 04:04:38 +0000305 } else if (keymatch(arg, "version", 4)) {
306 fprintf(stderr, "%s version %s (build %s)\n",
307 PACKAGE_NAME, VERSION, BUILD);
DRC306add82014-11-22 04:25:04 +0000308 exit(EXIT_SUCCESS);
DRC9665f5e2014-11-22 04:04:38 +0000309
Leon Scroggins III3993b372018-07-16 10:43:45 -0400310 } else if (keymatch(arg, "grayscale", 2) ||
311 keymatch(arg, "greyscale", 2)) {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000312 /* Force a monochrome JPEG file to be generated. */
313 jpeg_set_colorspace(cinfo, JCS_GRAYSCALE);
314
Guido Vollbeding5829cb22012-01-15 00:00: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
Leon Scroggins III3993b372018-07-16 10:43:45 -0400319 } 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
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000325 } else if (keymatch(arg, "maxmemory", 3)) {
326 /* Maximum memory in Kb (or Mb with 'm'). */
327 long lval;
328 char ch = 'x';
329
DRCe5eaf372014-05-09 18:00:32 +0000330 if (++argn >= argc) /* advance to next argument */
331 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000332 if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1)
DRCe5eaf372014-05-09 18:00:32 +0000333 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000334 if (ch == 'm' || ch == 'M')
DRCe5eaf372014-05-09 18:00:32 +0000335 lval *= 1000L;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000336 cinfo->mem->max_memory_to_use = lval * 1000L;
337
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000338 } 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
DRCab706232013-01-18 23:42:31 +0000343 fprintf(stderr, "%s: sorry, entropy optimization was not compiled in\n",
DRCe5eaf372014-05-09 18:00:32 +0000344 progname);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000345 exit(EXIT_FAILURE);
346#endif
347
348 } else if (keymatch(arg, "outfile", 4)) {
349 /* Set output file name. */
DRCe5eaf372014-05-09 18:00:32 +0000350 if (++argn >= argc) /* advance to next argument */
351 usage();
352 outfilename = argv[argn]; /* save it away for later use */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000353
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000354 } 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
DRCab706232013-01-18 23:42:31 +0000360 fprintf(stderr, "%s: sorry, progressive output was not compiled in\n",
DRCe5eaf372014-05-09 18:00:32 +0000361 progname);
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000362 exit(EXIT_FAILURE);
363#endif
364
DRCab706232013-01-18 23:42:31 +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
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000375 } else if (keymatch(arg, "quality", 1)) {
Guido Vollbeding5996a252009-06-27 00:00:00 +0000376 /* Quality ratings (quantization table scaling factors). */
DRCe5eaf372014-05-09 18:00:32 +0000377 if (++argn >= argc) /* advance to next argument */
378 usage();
Guido Vollbeding5996a252009-06-27 00:00:00 +0000379 qualityarg = argv[argn];
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000380
381 } else if (keymatch(arg, "qslots", 2)) {
382 /* Quantization table slot numbers. */
DRCe5eaf372014-05-09 18:00:32 +0000383 if (++argn >= argc) /* advance to next argument */
384 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +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. */
DRCe5eaf372014-05-09 18:00:32 +0000393 if (++argn >= argc) /* advance to next argument */
394 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +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
DRCe5eaf372014-05-09 18:00:32 +0000403 if (++argn >= argc) /* advance to next argument */
404 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000405 if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1)
DRCe5eaf372014-05-09 18:00:32 +0000406 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000407 if (lval < 0 || lval > 65535L)
DRCe5eaf372014-05-09 18:00:32 +0000408 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000409 if (ch == 'b' || ch == 'B') {
Leon Scroggins III3993b372018-07-16 10:43:45 -0400410 cinfo->restart_interval = (unsigned int)lval;
DRCe5eaf372014-05-09 18:00:32 +0000411 cinfo->restart_in_rows = 0; /* else prior '-restart n' overrides me */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000412 } else {
Leon Scroggins III3993b372018-07-16 10:43:45 -0400413 cinfo->restart_in_rows = (int)lval;
DRCe5eaf372014-05-09 18:00:32 +0000414 /* restart_interval will be computed during startup */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000415 }
416
417 } else if (keymatch(arg, "sample", 2)) {
418 /* Set sampling factors. */
DRCe5eaf372014-05-09 18:00:32 +0000419 if (++argn >= argc) /* advance to next argument */
420 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +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
Guido Vollbeding5996a252009-06-27 00:00:00 +0000427 } else if (keymatch(arg, "scans", 4)) {
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000428 /* Set scan script. */
429#ifdef C_MULTISCAN_FILES_SUPPORTED
DRCe5eaf372014-05-09 18:00:32 +0000430 if (++argn >= argc) /* advance to next argument */
431 usage();
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000432 scansarg = argv[argn];
433 /* We must postpone reading the file in case -progressive appears. */
434#else
DRCab706232013-01-18 23:42:31 +0000435 fprintf(stderr, "%s: sorry, multi-scan output was not compiled in\n",
DRCe5eaf372014-05-09 18:00:32 +0000436 progname);
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000437 exit(EXIT_FAILURE);
438#endif
439
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000440 } else if (keymatch(arg, "smooth", 2)) {
441 /* Set input smoothing factor. */
442 int val;
443
DRCe5eaf372014-05-09 18:00:32 +0000444 if (++argn >= argc) /* advance to next argument */
445 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000446 if (sscanf(argv[argn], "%d", &val) != 1)
DRCe5eaf372014-05-09 18:00:32 +0000447 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000448 if (val < 0 || val > 100)
DRCe5eaf372014-05-09 18:00:32 +0000449 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +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 {
DRCe5eaf372014-05-09 18:00:32 +0000457 usage(); /* bogus switch */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +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. */
DRCe5eaf372014-05-09 18:00:32 +0000467 if (qualityarg != NULL) /* process -quality if it was present */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400468 if (!set_quality_ratings(cinfo, qualityarg, force_baseline))
DRCe5eaf372014-05-09 18:00:32 +0000469 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000470
DRCe5eaf372014-05-09 18:00:32 +0000471 if (qtablefile != NULL) /* process -qtables if it was present */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400472 if (!read_quant_tables(cinfo, qtablefile, force_baseline))
DRCe5eaf372014-05-09 18:00:32 +0000473 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000474
DRCe5eaf372014-05-09 18:00:32 +0000475 if (qslotsarg != NULL) /* process -qslots if it was present */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400476 if (!set_quant_slots(cinfo, qslotsarg))
DRCe5eaf372014-05-09 18:00:32 +0000477 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000478
DRCe5eaf372014-05-09 18:00:32 +0000479 if (samplearg != NULL) /* process -sample if it was present */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400480 if (!set_sample_factors(cinfo, samplearg))
DRCe5eaf372014-05-09 18:00:32 +0000481 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000482
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000483#ifdef C_PROGRESSIVE_SUPPORTED
DRCe5eaf372014-05-09 18:00:32 +0000484 if (simple_progressive) /* process -progressive; -scans can override */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000485 jpeg_simple_progression(cinfo);
486#endif
487
488#ifdef C_MULTISCAN_FILES_SUPPORTED
DRCe5eaf372014-05-09 18:00:32 +0000489 if (scansarg != NULL) /* process -scans if it was present */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400490 if (!read_scan_script(cinfo, scansarg))
DRCe5eaf372014-05-09 18:00:32 +0000491 usage();
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000492#endif
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000493 }
494
DRCe5eaf372014-05-09 18:00:32 +0000495 return argn; /* return index of next arg (file name) */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000496}
497
498
499/*
500 * The main program.
501 */
502
Thomas G. Lane489583f1996-02-07 00:00:00 +0000503int
Leon Scroggins III3993b372018-07-16 10:43:45 -0400504main(int argc, char **argv)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000505{
506 struct jpeg_compress_struct cinfo;
507 struct jpeg_error_mgr jerr;
508#ifdef PROGRESS_REPORT
509 struct cdjpeg_progress_mgr progress;
510#endif
511 int file_index;
512 cjpeg_source_ptr src_mgr;
Alex Naidis6eb7d372016-10-16 23:10:08 +0200513 FILE *input_file;
Leon Scroggins III3993b372018-07-16 10:43:45 -0400514 FILE *icc_file;
515 JOCTET *icc_profile = NULL;
516 long icc_len = 0;
Alex Naidis6eb7d372016-10-16 23:10:08 +0200517 FILE *output_file = NULL;
DRCab706232013-01-18 23:42:31 +0000518 unsigned char *outbuffer = NULL;
519 unsigned long outsize = 0;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000520 JDIMENSION num_scanlines;
521
522 /* On Mac, fetch a command line. */
523#ifdef USE_CCOMMAND
524 argc = ccommand(&argv);
525#endif
526
527 progname = argv[0];
528 if (progname == NULL || progname[0] == 0)
DRCe5eaf372014-05-09 18:00:32 +0000529 progname = "cjpeg"; /* in case C library doesn't provide it */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000530
531 /* Initialize the JPEG compression object with default error handling. */
532 cinfo.err = jpeg_std_error(&jerr);
533 jpeg_create_compress(&cinfo);
534 /* Add some application-specific error messages (from cderror.h) */
Thomas G. Lane9ba2f5e1994-12-07 00:00:00 +0000535 jerr.addon_message_table = cdjpeg_message_table;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000536 jerr.first_addon_message = JMSG_FIRSTADDONCODE;
537 jerr.last_addon_message = JMSG_LASTADDONCODE;
538
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000539 /* Initialize JPEG parameters.
540 * Much of this may be overridden later.
541 * In particular, we don't yet know the input file's color space,
542 * but we need to provide some value for jpeg_set_defaults() to work.
543 */
544
545 cinfo.in_color_space = JCS_RGB; /* arbitrary guess */
546 jpeg_set_defaults(&cinfo);
547
548 /* Scan command line to find file names.
549 * It is convenient to use just one switch-parsing routine, but the switch
550 * values read here are ignored; we will rescan the switches after opening
551 * the input file.
552 */
553
554 file_index = parse_switches(&cinfo, argc, argv, 0, FALSE);
555
556#ifdef TWO_FILE_COMMANDLINE
DRCab706232013-01-18 23:42:31 +0000557 if (!memdst) {
558 /* Must have either -outfile switch or explicit output file name */
559 if (outfilename == NULL) {
Leon Scroggins III3993b372018-07-16 10:43:45 -0400560 if (file_index != argc - 2) {
DRCab706232013-01-18 23:42:31 +0000561 fprintf(stderr, "%s: must name one input and one output file\n",
562 progname);
563 usage();
564 }
Leon Scroggins III3993b372018-07-16 10:43:45 -0400565 outfilename = argv[file_index + 1];
DRCab706232013-01-18 23:42:31 +0000566 } else {
Leon Scroggins III3993b372018-07-16 10:43:45 -0400567 if (file_index != argc - 1) {
DRCab706232013-01-18 23:42:31 +0000568 fprintf(stderr, "%s: must name one input and one output file\n",
569 progname);
570 usage();
571 }
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000572 }
573 }
574#else
575 /* Unix style: expect zero or one file name */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400576 if (file_index < argc - 1) {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000577 fprintf(stderr, "%s: only one input file\n", progname);
578 usage();
579 }
580#endif /* TWO_FILE_COMMANDLINE */
581
582 /* Open the input file. */
583 if (file_index < argc) {
584 if ((input_file = fopen(argv[file_index], READ_BINARY)) == NULL) {
585 fprintf(stderr, "%s: can't open %s\n", progname, argv[file_index]);
586 exit(EXIT_FAILURE);
587 }
588 } else {
589 /* default input file is stdin */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000590 input_file = read_stdin();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000591 }
592
593 /* Open the output file. */
594 if (outfilename != NULL) {
595 if ((output_file = fopen(outfilename, WRITE_BINARY)) == NULL) {
596 fprintf(stderr, "%s: can't open %s\n", progname, outfilename);
597 exit(EXIT_FAILURE);
598 }
DRCab706232013-01-18 23:42:31 +0000599 } else if (!memdst) {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000600 /* default output file is stdout */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000601 output_file = write_stdout();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000602 }
603
Leon Scroggins III3993b372018-07-16 10:43:45 -0400604 if (icc_filename != NULL) {
605 if ((icc_file = fopen(icc_filename, READ_BINARY)) == NULL) {
606 fprintf(stderr, "%s: can't open %s\n", progname, icc_filename);
607 exit(EXIT_FAILURE);
608 }
609 if (fseek(icc_file, 0, SEEK_END) < 0 ||
610 (icc_len = ftell(icc_file)) < 1 ||
611 fseek(icc_file, 0, SEEK_SET) < 0) {
612 fprintf(stderr, "%s: can't determine size of %s\n", progname,
613 icc_filename);
614 exit(EXIT_FAILURE);
615 }
616 if ((icc_profile = (JOCTET *)malloc(icc_len)) == NULL) {
617 fprintf(stderr, "%s: can't allocate memory for ICC profile\n", progname);
618 fclose(icc_file);
619 exit(EXIT_FAILURE);
620 }
621 if (fread(icc_profile, icc_len, 1, icc_file) < 1) {
622 fprintf(stderr, "%s: can't read ICC profile from %s\n", progname,
623 icc_filename);
624 free(icc_profile);
625 fclose(icc_file);
626 exit(EXIT_FAILURE);
627 }
628 fclose(icc_file);
629 }
630
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000631#ifdef PROGRESS_REPORT
Leon Scroggins III3993b372018-07-16 10:43:45 -0400632 start_progress_monitor((j_common_ptr)&cinfo, &progress);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000633#endif
634
635 /* Figure out the input file format, and set up to read it. */
636 src_mgr = select_file_type(&cinfo, input_file);
637 src_mgr->input_file = input_file;
638
639 /* Read the input file header to obtain file size & colorspace. */
640 (*src_mgr->start_input) (&cinfo, src_mgr);
641
642 /* Now that we know input colorspace, fix colorspace-dependent defaults */
643 jpeg_default_colorspace(&cinfo);
644
645 /* Adjust default compression parameters by re-parsing the options */
646 file_index = parse_switches(&cinfo, argc, argv, 0, TRUE);
647
648 /* Specify data destination for compression */
DRCab706232013-01-18 23:42:31 +0000649#if JPEG_LIB_VERSION >= 80 || defined(MEM_SRCDST_SUPPORTED)
650 if (memdst)
651 jpeg_mem_dest(&cinfo, &outbuffer, &outsize);
652 else
653#endif
654 jpeg_stdio_dest(&cinfo, output_file);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000655
656 /* Start compressor */
657 jpeg_start_compress(&cinfo, TRUE);
658
Leon Scroggins III3993b372018-07-16 10:43:45 -0400659 if (icc_profile != NULL)
660 jpeg_write_icc_profile(&cinfo, icc_profile, (unsigned int)icc_len);
661
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000662 /* Process data */
663 while (cinfo.next_scanline < cinfo.image_height) {
664 num_scanlines = (*src_mgr->get_pixel_rows) (&cinfo, src_mgr);
Leon Scroggins III3993b372018-07-16 10:43:45 -0400665 (void)jpeg_write_scanlines(&cinfo, src_mgr->buffer, num_scanlines);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000666 }
667
668 /* Finish compression and release memory */
669 (*src_mgr->finish_input) (&cinfo, src_mgr);
670 jpeg_finish_compress(&cinfo);
671 jpeg_destroy_compress(&cinfo);
672
Thomas G. Lane9ba2f5e1994-12-07 00:00:00 +0000673 /* Close files, if we opened them */
674 if (input_file != stdin)
675 fclose(input_file);
DRCab706232013-01-18 23:42:31 +0000676 if (output_file != stdout && output_file != NULL)
Thomas G. Lane9ba2f5e1994-12-07 00:00:00 +0000677 fclose(output_file);
678
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000679#ifdef PROGRESS_REPORT
Leon Scroggins III3993b372018-07-16 10:43:45 -0400680 end_progress_monitor((j_common_ptr)&cinfo);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000681#endif
682
DRCab706232013-01-18 23:42:31 +0000683 if (memdst) {
684 fprintf(stderr, "Compressed size: %lu bytes\n", outsize);
685 if (outbuffer != NULL)
686 free(outbuffer);
687 }
688
Leon Scroggins III3993b372018-07-16 10:43:45 -0400689 if (icc_profile != NULL)
690 free(icc_profile);
691
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000692 /* All done. */
693 exit(jerr.num_warnings ? EXIT_WARNING : EXIT_SUCCESS);
DRCe5eaf372014-05-09 18:00:32 +0000694 return 0; /* suppress no-return-value warnings */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000695}