4 * Copyright (C) 1991-1998, Thomas G. Lane.
5 * This file is part of the Independent JPEG Group's software.
6 * For conditions of distribution and use, see the accompanying README file.
8 * This file contains a command-line user interface for the JPEG compressor.
9 * It should work on any system with Unix- or MS-DOS-style command lines.
11 * Two different command line styles are permitted, depending on the
12 * compile-time switch TWO_FILE_COMMANDLINE:
13 * cjpeg [options] inputfile outputfile
14 * cjpeg [options] [inputfile]
15 * In the second style, output is always to standard output, which you'd
16 * normally redirect to a file or pipe to some other program. Input is
17 * either from a named file or from standard input (typically redirected).
18 * The second style is convenient on Unix but is unhelpful on systems that
19 * don't support pipes. Also, you MUST use the first style if your system
20 * doesn't do binary I/O to stdin/stdout.
21 * To simplify script writing, the "-outfile" switch is provided. The syntax
22 * cjpeg [options] -outfile outputfile inputfile
23 * works regardless of which command line style is used.
26 #include "cdjpeg.h" /* Common decls for cjpeg/djpeg applications */
27 #include "jversion.h" /* for version message */
29 #ifdef USE_CCOMMAND /* command-line reader for Macintosh */
31 #include <SIOUX.h> /* Metrowerks needs this */
32 #include <console.h> /* ... and this */
35 #include <console.h> /* Think declares it here */
40 /* Create the add-on message string table. */
42 #define JMESSAGE(code,string) string ,
44 static const char * const cdjpeg_message_table
[] = {
51 * This routine determines what format the input file is,
52 * and selects the appropriate input-reading module.
54 * To determine which family of input formats the file belongs to,
55 * we may look only at the first byte of the file, since C does not
56 * guarantee that more than one character can be pushed back with ungetc.
57 * Looking at additional bytes would require one of these approaches:
58 * 1) assume we can fseek() the input file (fails for piped input);
59 * 2) assume we can push back more than one character (works in
60 * some C implementations, but unportable);
61 * 3) provide our own buffering (breaks input readers that want to use
62 * stdio directly, such as the RLE library);
63 * or 4) don't put back the data, and modify the input_init methods to assume
64 * they start reading after the start of file (also breaks RLE library).
65 * #1 is attractive for MS-DOS but is untenable on Unix.
67 * The most portable solution for file types that can't be identified by their
68 * first byte is to make the user tell us what they are. This is also the
69 * only approach for "raw" file types that contain only arbitrary values.
70 * We presently apply this method for Targa files. Most of the time Targa
71 * files start with 0x00, so we recognize that case. Potentially, however,
72 * a Targa file could start with any byte value (byte 0 is the length of the
73 * seldom-used ID field), so we provide a switch to force Targa input mode.
76 static boolean is_targa
; /* records user -targa switch */
79 LOCAL(cjpeg_source_ptr
)
80 select_file_type (j_compress_ptr cinfo
, FILE * infile
)
85 #ifdef TARGA_SUPPORTED
86 return jinit_read_targa(cinfo
);
88 ERREXIT(cinfo
, JERR_TGA_NOTCOMP
);
92 if ((c
= getc(infile
)) == EOF
)
93 ERREXIT(cinfo
, JERR_INPUT_EMPTY
);
94 if (ungetc(c
, infile
) == EOF
)
95 ERREXIT(cinfo
, JERR_UNGETC_FAILED
);
100 return jinit_read_bmp(cinfo
);
104 return jinit_read_gif(cinfo
);
108 return jinit_read_ppm(cinfo
);
112 return jinit_read_rle(cinfo
);
114 #ifdef TARGA_SUPPORTED
116 return jinit_read_targa(cinfo
);
119 ERREXIT(cinfo
, JERR_UNKNOWN_FORMAT
);
123 return NULL
; /* suppress compiler warnings */
128 * Argument-parsing code.
129 * The switch parser is designed to be useful with DOS-style command line
130 * syntax, ie, intermixed switches and file names, where only the switches
131 * to the left of a given file name affect processing of that file.
132 * The main program in this file doesn't actually use this capability...
136 static const char * progname
; /* program name for error messages */
137 static char * outfilename
; /* for -outfile switch */
142 /* complain about bad command line */
144 fprintf(stderr
, "usage: %s [switches] ", progname
);
145 #ifdef TWO_FILE_COMMANDLINE
146 fprintf(stderr
, "inputfile outputfile\n");
148 fprintf(stderr
, "[inputfile]\n");
151 fprintf(stderr
, "Switches (names may be abbreviated):\n");
152 fprintf(stderr
, " -quality N Compression quality (0..100; 5-95 is useful range)\n");
153 fprintf(stderr
, " -grayscale Create monochrome JPEG file\n");
154 #ifdef ENTROPY_OPT_SUPPORTED
155 fprintf(stderr
, " -optimize Optimize Huffman table (smaller file, but slow compression)\n");
157 #ifdef C_PROGRESSIVE_SUPPORTED
158 fprintf(stderr
, " -progressive Create progressive JPEG file\n");
160 #ifdef TARGA_SUPPORTED
161 fprintf(stderr
, " -targa Input file is Targa format (usually not needed)\n");
163 fprintf(stderr
, "Switches for advanced users:\n");
164 #ifdef DCT_ISLOW_SUPPORTED
165 fprintf(stderr
, " -dct int Use integer DCT method%s\n",
166 (JDCT_DEFAULT
== JDCT_ISLOW
? " (default)" : ""));
168 #ifdef DCT_IFAST_SUPPORTED
169 fprintf(stderr
, " -dct fast Use fast integer DCT (less accurate)%s\n",
170 (JDCT_DEFAULT
== JDCT_IFAST
? " (default)" : ""));
172 #ifdef DCT_FLOAT_SUPPORTED
173 fprintf(stderr
, " -dct float Use floating-point DCT method%s\n",
174 (JDCT_DEFAULT
== JDCT_FLOAT
? " (default)" : ""));
176 fprintf(stderr
, " -restart N Set restart interval in rows, or in blocks with B\n");
177 #ifdef INPUT_SMOOTHING_SUPPORTED
178 fprintf(stderr
, " -smooth N Smooth dithered input (N=1..100 is strength)\n");
180 fprintf(stderr
, " -maxmemory N Maximum memory to use (in kbytes)\n");
181 fprintf(stderr
, " -outfile name Specify name for output file\n");
182 fprintf(stderr
, " -verbose or -debug Emit debug output\n");
183 fprintf(stderr
, "Switches for wizards:\n");
184 #ifdef C_ARITH_CODING_SUPPORTED
185 fprintf(stderr
, " -arithmetic Use arithmetic coding\n");
187 fprintf(stderr
, " -baseline Force baseline quantization tables\n");
188 fprintf(stderr
, " -qtables file Use quantization tables given in file\n");
189 fprintf(stderr
, " -qslots N[,...] Set component quantization tables\n");
190 fprintf(stderr
, " -sample HxV[,...] Set component sampling factors\n");
191 #ifdef C_MULTISCAN_FILES_SUPPORTED
192 fprintf(stderr
, " -scans file Create multi-scan JPEG per script file\n");
199 parse_switches (j_compress_ptr cinfo
, int argc
, char **argv
,
200 int last_file_arg_seen
, boolean for_real
)
201 /* Parse optional switches.
202 * Returns argv[] index of first file-name argument (== argc if none).
203 * Any file names with indexes <= last_file_arg_seen are ignored;
204 * they have presumably been processed in a previous iteration.
205 * (Pass 0 for last_file_arg_seen on the first or only iteration.)
206 * for_real is FALSE on the first (dummy) pass; we may skip any expensive
212 int quality
; /* -quality parameter */
213 int q_scale_factor
; /* scaling percentage for -qtables */
214 boolean force_baseline
;
215 boolean simple_progressive
;
216 char * qtablefile
= NULL
; /* saves -qtables filename if any */
217 char * qslotsarg
= NULL
; /* saves -qslots parm if any */
218 char * samplearg
= NULL
; /* saves -sample parm if any */
219 char * scansarg
= NULL
; /* saves -scans parm if any */
221 /* Set up default JPEG parameters. */
222 /* Note that default -quality level need not, and does not,
223 * match the default scaling for an explicit -qtables argument.
225 quality
= 75; /* default -quality value */
226 q_scale_factor
= 100; /* default to no scaling for -qtables */
227 force_baseline
= FALSE
; /* by default, allow 16-bit quantizers */
228 simple_progressive
= FALSE
;
231 cinfo
->err
->trace_level
= 0;
233 /* Scan command line options, adjust parameters */
235 for (argn
= 1; argn
< argc
; argn
++) {
238 /* Not a switch, must be a file name argument */
239 if (argn
<= last_file_arg_seen
) {
240 outfilename
= NULL
; /* -outfile applies to just one input file */
241 continue; /* ignore this name if previously processed */
243 break; /* else done parsing switches */
245 arg
++; /* advance past switch marker character */
247 if (keymatch(arg
, "arithmetic", 1)) {
248 /* Use arithmetic coding. */
249 #ifdef C_ARITH_CODING_SUPPORTED
250 cinfo
->arith_code
= TRUE
;
252 fprintf(stderr
, "%s: sorry, arithmetic coding not supported\n",
257 } else if (keymatch(arg
, "baseline", 1)) {
258 /* Force baseline-compatible output (8-bit quantizer values). */
259 force_baseline
= TRUE
;
261 } else if (keymatch(arg
, "dct", 2)) {
262 /* Select DCT algorithm. */
263 if (++argn
>= argc
) /* advance to next argument */
265 if (keymatch(argv
[argn
], "int", 1)) {
266 cinfo
->dct_method
= JDCT_ISLOW
;
267 } else if (keymatch(argv
[argn
], "fast", 2)) {
268 cinfo
->dct_method
= JDCT_IFAST
;
269 } else if (keymatch(argv
[argn
], "float", 2)) {
270 cinfo
->dct_method
= JDCT_FLOAT
;
274 } else if (keymatch(arg
, "debug", 1) || keymatch(arg
, "verbose", 1)) {
275 /* Enable debug printouts. */
276 /* On first -d, print version identification */
277 static boolean printed_version
= FALSE
;
279 if (! printed_version
) {
280 fprintf(stderr
, "Independent JPEG Group's CJPEG, version %s\n%s\n",
281 JVERSION
, JCOPYRIGHT
);
282 printed_version
= TRUE
;
284 cinfo
->err
->trace_level
++;
286 } else if (keymatch(arg
, "grayscale", 2) || keymatch(arg
, "greyscale",2)) {
287 /* Force a monochrome JPEG file to be generated. */
288 jpeg_set_colorspace(cinfo
, JCS_GRAYSCALE
);
290 } else if (keymatch(arg
, "maxmemory", 3)) {
291 /* Maximum memory in Kb (or Mb with 'm'). */
295 if (++argn
>= argc
) /* advance to next argument */
297 if (sscanf(argv
[argn
], "%ld%c", &lval
, &ch
) < 1)
299 if (ch
== 'm' || ch
== 'M')
301 cinfo
->mem
->max_memory_to_use
= lval
* 1000L;
303 } else if (keymatch(arg
, "optimize", 1) || keymatch(arg
, "optimise", 1)) {
304 /* Enable entropy parm optimization. */
305 #ifdef ENTROPY_OPT_SUPPORTED
306 cinfo
->optimize_coding
= TRUE
;
308 fprintf(stderr
, "%s: sorry, entropy optimization was not compiled\n",
313 } else if (keymatch(arg
, "outfile", 4)) {
314 /* Set output file name. */
315 if (++argn
>= argc
) /* advance to next argument */
317 outfilename
= argv
[argn
]; /* save it away for later use */
319 } else if (keymatch(arg
, "progressive", 1)) {
320 /* Select simple progressive mode. */
321 #ifdef C_PROGRESSIVE_SUPPORTED
322 simple_progressive
= TRUE
;
323 /* We must postpone execution until num_components is known. */
325 fprintf(stderr
, "%s: sorry, progressive output was not compiled\n",
330 } else if (keymatch(arg
, "quality", 1)) {
331 /* Quality factor (quantization table scaling factor). */
332 if (++argn
>= argc
) /* advance to next argument */
334 if (sscanf(argv
[argn
], "%d", &quality
) != 1)
336 /* Change scale factor in case -qtables is present. */
337 q_scale_factor
= jpeg_quality_scaling(quality
);
339 } else if (keymatch(arg
, "qslots", 2)) {
340 /* Quantization table slot numbers. */
341 if (++argn
>= argc
) /* advance to next argument */
343 qslotsarg
= argv
[argn
];
344 /* Must delay setting qslots until after we have processed any
345 * colorspace-determining switches, since jpeg_set_colorspace sets
346 * default quant table numbers.
349 } else if (keymatch(arg
, "qtables", 2)) {
350 /* Quantization tables fetched from file. */
351 if (++argn
>= argc
) /* advance to next argument */
353 qtablefile
= argv
[argn
];
354 /* We postpone actually reading the file in case -quality comes later. */
356 } else if (keymatch(arg
, "restart", 1)) {
357 /* Restart interval in MCU rows (or in MCUs with 'b'). */
361 if (++argn
>= argc
) /* advance to next argument */
363 if (sscanf(argv
[argn
], "%ld%c", &lval
, &ch
) < 1)
365 if (lval
< 0 || lval
> 65535L)
367 if (ch
== 'b' || ch
== 'B') {
368 cinfo
->restart_interval
= (unsigned int) lval
;
369 cinfo
->restart_in_rows
= 0; /* else prior '-restart n' overrides me */
371 cinfo
->restart_in_rows
= (int) lval
;
372 /* restart_interval will be computed during startup */
375 } else if (keymatch(arg
, "sample", 2)) {
376 /* Set sampling factors. */
377 if (++argn
>= argc
) /* advance to next argument */
379 samplearg
= argv
[argn
];
380 /* Must delay setting sample factors until after we have processed any
381 * colorspace-determining switches, since jpeg_set_colorspace sets
382 * default sampling factors.
385 } else if (keymatch(arg
, "scans", 2)) {
386 /* Set scan script. */
387 #ifdef C_MULTISCAN_FILES_SUPPORTED
388 if (++argn
>= argc
) /* advance to next argument */
390 scansarg
= argv
[argn
];
391 /* We must postpone reading the file in case -progressive appears. */
393 fprintf(stderr
, "%s: sorry, multi-scan output was not compiled\n",
398 } else if (keymatch(arg
, "smooth", 2)) {
399 /* Set input smoothing factor. */
402 if (++argn
>= argc
) /* advance to next argument */
404 if (sscanf(argv
[argn
], "%d", &val
) != 1)
406 if (val
< 0 || val
> 100)
408 cinfo
->smoothing_factor
= val
;
410 } else if (keymatch(arg
, "targa", 1)) {
411 /* Input file is Targa format. */
415 usage(); /* bogus switch */
419 /* Post-switch-scanning cleanup */
423 /* Set quantization tables for selected quality. */
424 /* Some or all may be overridden if -qtables is present. */
425 jpeg_set_quality(cinfo
, quality
, force_baseline
);
427 if (qtablefile
!= NULL
) /* process -qtables if it was present */
428 if (! read_quant_tables(cinfo
, qtablefile
,
429 q_scale_factor
, force_baseline
))
432 if (qslotsarg
!= NULL
) /* process -qslots if it was present */
433 if (! set_quant_slots(cinfo
, qslotsarg
))
436 if (samplearg
!= NULL
) /* process -sample if it was present */
437 if (! set_sample_factors(cinfo
, samplearg
))
440 #ifdef C_PROGRESSIVE_SUPPORTED
441 if (simple_progressive
) /* process -progressive; -scans can override */
442 jpeg_simple_progression(cinfo
);
445 #ifdef C_MULTISCAN_FILES_SUPPORTED
446 if (scansarg
!= NULL
) /* process -scans if it was present */
447 if (! read_scan_script(cinfo
, scansarg
))
452 return argn
; /* return index of next arg (file name) */
461 main (int argc
, char **argv
)
463 struct jpeg_compress_struct cinfo
;
464 struct jpeg_error_mgr jerr
;
465 #ifdef PROGRESS_REPORT
466 struct cdjpeg_progress_mgr progress
;
469 cjpeg_source_ptr src_mgr
;
472 JDIMENSION num_scanlines
;
474 /* On Mac, fetch a command line. */
476 argc
= ccommand(&argv
);
480 if (progname
== NULL
|| progname
[0] == 0)
481 progname
= "cjpeg"; /* in case C library doesn't provide it */
483 /* Initialize the JPEG compression object with default error handling. */
484 cinfo
.err
= jpeg_std_error(&jerr
);
485 jpeg_create_compress(&cinfo
);
486 /* Add some application-specific error messages (from cderror.h) */
487 jerr
.addon_message_table
= cdjpeg_message_table
;
488 jerr
.first_addon_message
= JMSG_FIRSTADDONCODE
;
489 jerr
.last_addon_message
= JMSG_LASTADDONCODE
;
491 /* Now safe to enable signal catcher. */
492 #ifdef NEED_SIGNAL_CATCHER
493 enable_signal_catcher((j_common_ptr
) &cinfo
);
496 /* Initialize JPEG parameters.
497 * Much of this may be overridden later.
498 * In particular, we don't yet know the input file's color space,
499 * but we need to provide some value for jpeg_set_defaults() to work.
502 cinfo
.in_color_space
= JCS_RGB
; /* arbitrary guess */
503 jpeg_set_defaults(&cinfo
);
505 /* Scan command line to find file names.
506 * It is convenient to use just one switch-parsing routine, but the switch
507 * values read here are ignored; we will rescan the switches after opening
511 file_index
= parse_switches(&cinfo
, argc
, argv
, 0, FALSE
);
513 #ifdef TWO_FILE_COMMANDLINE
514 /* Must have either -outfile switch or explicit output file name */
515 if (outfilename
== NULL
) {
516 if (file_index
!= argc
-2) {
517 fprintf(stderr
, "%s: must name one input and one output file\n",
521 outfilename
= argv
[file_index
+1];
523 if (file_index
!= argc
-1) {
524 fprintf(stderr
, "%s: must name one input and one output file\n",
530 /* Unix style: expect zero or one file name */
531 if (file_index
< argc
-1) {
532 fprintf(stderr
, "%s: only one input file\n", progname
);
535 #endif /* TWO_FILE_COMMANDLINE */
537 /* Open the input file. */
538 if (file_index
< argc
) {
539 if ((input_file
= fopen(argv
[file_index
], READ_BINARY
)) == NULL
) {
540 fprintf(stderr
, "%s: can't open %s\n", progname
, argv
[file_index
]);
544 /* default input file is stdin */
545 input_file
= read_stdin();
548 /* Open the output file. */
549 if (outfilename
!= NULL
) {
550 if ((output_file
= fopen(outfilename
, WRITE_BINARY
)) == NULL
) {
551 fprintf(stderr
, "%s: can't open %s\n", progname
, outfilename
);
555 /* default output file is stdout */
556 output_file
= write_stdout();
559 #ifdef PROGRESS_REPORT
560 start_progress_monitor((j_common_ptr
) &cinfo
, &progress
);
563 /* Figure out the input file format, and set up to read it. */
564 src_mgr
= select_file_type(&cinfo
, input_file
);
565 src_mgr
->input_file
= input_file
;
567 /* Read the input file header to obtain file size & colorspace. */
568 (*src_mgr
->start_input
) (&cinfo
, src_mgr
);
570 /* Now that we know input colorspace, fix colorspace-dependent defaults */
571 jpeg_default_colorspace(&cinfo
);
573 /* Adjust default compression parameters by re-parsing the options */
574 file_index
= parse_switches(&cinfo
, argc
, argv
, 0, TRUE
);
576 /* Specify data destination for compression */
577 jpeg_stdio_dest(&cinfo
, output_file
);
579 /* Start compressor */
580 jpeg_start_compress(&cinfo
, TRUE
);
583 while (cinfo
.next_scanline
< cinfo
.image_height
) {
584 num_scanlines
= (*src_mgr
->get_pixel_rows
) (&cinfo
, src_mgr
);
585 (void) jpeg_write_scanlines(&cinfo
, src_mgr
->buffer
, num_scanlines
);
588 /* Finish compression and release memory */
589 (*src_mgr
->finish_input
) (&cinfo
, src_mgr
);
590 jpeg_finish_compress(&cinfo
);
591 jpeg_destroy_compress(&cinfo
);
593 /* Close files, if we opened them */
594 if (input_file
!= stdin
)
596 if (output_file
!= stdout
)
599 #ifdef PROGRESS_REPORT
600 end_progress_monitor((j_common_ptr
) &cinfo
);
604 exit(jerr
.num_warnings
? EXIT_WARNING
: EXIT_SUCCESS
);
605 return 0; /* suppress no-return-value warnings */