blob: 96db4015de6b23f2792c1948899b86c043e80a8f [file] [log] [blame]
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001/*
2 * djpeg.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-1997, Thomas G. Lane.
Alex Naidis6eb7d372016-10-16 23:10:08 +02006 * Modified 2013 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-2011, 2013-2017, D. R. Commander.
DRCac30a1b2015-06-25 03:44:36 +00009 * Copyright (C) 2015, Google, Inc.
Alex Naidis6eb7d372016-10-16 23:10:08 +020010 * For conditions of distribution and use, see the accompanying README.ijg
11 * file.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000012 *
13 * This file contains a command-line user interface for the JPEG decompressor.
14 * It should work on any system with Unix- or MS-DOS-style command lines.
15 *
16 * Two different command line styles are permitted, depending on the
17 * compile-time switch TWO_FILE_COMMANDLINE:
DRCe5eaf372014-05-09 18:00:32 +000018 * djpeg [options] inputfile outputfile
19 * djpeg [options] [inputfile]
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000020 * In the second style, output is always to standard output, which you'd
21 * normally redirect to a file or pipe to some other program. Input is
22 * either from a named file or from standard input (typically redirected).
23 * The second style is convenient on Unix but is unhelpful on systems that
24 * don't support pipes. Also, you MUST use the first style if your system
25 * doesn't do binary I/O to stdin/stdout.
26 * To simplify script writing, the "-outfile" switch is provided. The syntax
DRCe5eaf372014-05-09 18:00:32 +000027 * djpeg [options] -outfile outputfile inputfile
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000028 * works regardless of which command line style is used.
29 */
30
DRCe5eaf372014-05-09 18:00:32 +000031#include "cdjpeg.h" /* Common decls for cjpeg/djpeg applications */
32#include "jversion.h" /* for version message */
DRCff6961f2014-04-20 09:17:11 +000033#include "jconfigint.h"
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000034
DRCe5eaf372014-05-09 18:00:32 +000035#include <ctype.h> /* to declare isprint() */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000036
DRCe5eaf372014-05-09 18:00:32 +000037#ifdef USE_CCOMMAND /* command-line reader for Macintosh */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000038#ifdef __MWERKS__
Thomas G. Lane489583f1996-02-07 00:00:00 +000039#include <SIOUX.h> /* Metrowerks needs this */
DRCe5eaf372014-05-09 18:00:32 +000040#include <console.h> /* ... and this */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000041#endif
42#ifdef THINK_C
DRCe5eaf372014-05-09 18:00:32 +000043#include <console.h> /* Think declares it here */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000044#endif
45#endif
46
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000047
Thomas G. Lane9ba2f5e1994-12-07 00:00:00 +000048/* Create the add-on message string table. */
49
DRCe5eaf372014-05-09 18:00:32 +000050#define JMESSAGE(code,string) string ,
Thomas G. Lane9ba2f5e1994-12-07 00:00:00 +000051
52static const char * const cdjpeg_message_table[] = {
53#include "cderror.h"
54 NULL
55};
56
57
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000058/*
59 * This list defines the known output image formats
60 * (not all of which need be supported by a given version).
61 * You can change the default output format by defining DEFAULT_FMT;
62 * indeed, you had better do so if you undefine PPM_SUPPORTED.
63 */
64
65typedef enum {
DRCe5eaf372014-05-09 18:00:32 +000066 FMT_BMP, /* BMP format (Windows flavor) */
67 FMT_GIF, /* GIF format */
68 FMT_OS2, /* BMP format (OS/2 flavor) */
69 FMT_PPM, /* PPM/PGM (PBMPLUS formats) */
70 FMT_RLE, /* RLE format */
71 FMT_TARGA, /* Targa format */
72 FMT_TIFF /* TIFF format */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000073} IMAGE_FORMATS;
74
DRCe5eaf372014-05-09 18:00:32 +000075#ifndef DEFAULT_FMT /* so can override from CFLAGS in Makefile */
76#define DEFAULT_FMT FMT_PPM
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000077#endif
78
79static IMAGE_FORMATS requested_fmt;
80
81
82/*
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000083 * Argument-parsing code.
84 * The switch parser is designed to be useful with DOS-style command line
85 * syntax, ie, intermixed switches and file names, where only the switches
86 * to the left of a given file name affect processing of that file.
87 * The main program in this file doesn't actually use this capability...
88 */
89
90
DRC0ef076f2016-02-19 18:32:10 -060091static const char *progname; /* program name for error messages */
92static char *outfilename; /* for -outfile switch */
93boolean memsrc; /* for -memsrc switch */
94boolean skip, crop;
95JDIMENSION skip_start, skip_end;
96JDIMENSION crop_x, crop_y, crop_width, crop_height;
DRCab706232013-01-18 23:42:31 +000097#define INPUT_BUF_SIZE 4096
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000098
99
Thomas G. Lane489583f1996-02-07 00:00:00 +0000100LOCAL(void)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000101usage (void)
102/* complain about bad command line */
103{
104 fprintf(stderr, "usage: %s [switches] ", progname);
105#ifdef TWO_FILE_COMMANDLINE
106 fprintf(stderr, "inputfile outputfile\n");
107#else
108 fprintf(stderr, "[inputfile]\n");
109#endif
110
111 fprintf(stderr, "Switches (names may be abbreviated):\n");
112 fprintf(stderr, " -colors N Reduce image to no more than N colors\n");
113 fprintf(stderr, " -fast Fast, low-quality processing\n");
114 fprintf(stderr, " -grayscale Force grayscale output\n");
DRC6a833a82011-03-03 16:58:47 +0000115 fprintf(stderr, " -rgb Force RGB output\n");
DRC78df2e62014-05-12 09:23:57 +0000116 fprintf(stderr, " -rgb565 Force RGB565 output\n");
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000117#ifdef IDCT_SCALING_SUPPORTED
118 fprintf(stderr, " -scale M/N Scale output image by fraction M/N, eg, 1/8\n");
119#endif
120#ifdef BMP_SUPPORTED
121 fprintf(stderr, " -bmp Select BMP output format (Windows style)%s\n",
DRCe5eaf372014-05-09 18:00:32 +0000122 (DEFAULT_FMT == FMT_BMP ? " (default)" : ""));
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000123#endif
124#ifdef GIF_SUPPORTED
125 fprintf(stderr, " -gif Select GIF output format%s\n",
DRCe5eaf372014-05-09 18:00:32 +0000126 (DEFAULT_FMT == FMT_GIF ? " (default)" : ""));
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000127#endif
128#ifdef BMP_SUPPORTED
129 fprintf(stderr, " -os2 Select BMP output format (OS/2 style)%s\n",
DRCe5eaf372014-05-09 18:00:32 +0000130 (DEFAULT_FMT == FMT_OS2 ? " (default)" : ""));
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000131#endif
132#ifdef PPM_SUPPORTED
133 fprintf(stderr, " -pnm Select PBMPLUS (PPM/PGM) output format%s\n",
DRCe5eaf372014-05-09 18:00:32 +0000134 (DEFAULT_FMT == FMT_PPM ? " (default)" : ""));
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000135#endif
136#ifdef RLE_SUPPORTED
137 fprintf(stderr, " -rle Select Utah RLE output format%s\n",
DRCe5eaf372014-05-09 18:00:32 +0000138 (DEFAULT_FMT == FMT_RLE ? " (default)" : ""));
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000139#endif
140#ifdef TARGA_SUPPORTED
141 fprintf(stderr, " -targa Select Targa output format%s\n",
DRCe5eaf372014-05-09 18:00:32 +0000142 (DEFAULT_FMT == FMT_TARGA ? " (default)" : ""));
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000143#endif
144 fprintf(stderr, "Switches for advanced users:\n");
145#ifdef DCT_ISLOW_SUPPORTED
146 fprintf(stderr, " -dct int Use integer DCT method%s\n",
DRCe5eaf372014-05-09 18:00:32 +0000147 (JDCT_DEFAULT == JDCT_ISLOW ? " (default)" : ""));
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000148#endif
149#ifdef DCT_IFAST_SUPPORTED
150 fprintf(stderr, " -dct fast Use fast integer DCT (less accurate)%s\n",
DRCe5eaf372014-05-09 18:00:32 +0000151 (JDCT_DEFAULT == JDCT_IFAST ? " (default)" : ""));
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000152#endif
153#ifdef DCT_FLOAT_SUPPORTED
154 fprintf(stderr, " -dct float Use floating-point DCT method%s\n",
DRCe5eaf372014-05-09 18:00:32 +0000155 (JDCT_DEFAULT == JDCT_FLOAT ? " (default)" : ""));
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000156#endif
157 fprintf(stderr, " -dither fs Use F-S dithering (default)\n");
158 fprintf(stderr, " -dither none Don't use dithering in quantization\n");
159 fprintf(stderr, " -dither ordered Use ordered dither (medium speed, quality)\n");
160#ifdef QUANT_2PASS_SUPPORTED
161 fprintf(stderr, " -map FILE Map to colors used in named image file\n");
162#endif
163 fprintf(stderr, " -nosmooth Don't use high-quality upsampling\n");
164#ifdef QUANT_1PASS_SUPPORTED
165 fprintf(stderr, " -onepass Use 1-pass quantization (fast, low quality)\n");
166#endif
167 fprintf(stderr, " -maxmemory N Maximum memory to use (in kbytes)\n");
168 fprintf(stderr, " -outfile name Specify name for output file\n");
DRCab706232013-01-18 23:42:31 +0000169#if JPEG_LIB_VERSION >= 80 || defined(MEM_SRCDST_SUPPORTED)
170 fprintf(stderr, " -memsrc Load input file into memory before decompressing\n");
171#endif
172
DRC0ef076f2016-02-19 18:32:10 -0600173 fprintf(stderr, " -skip Y0,Y1 Decompress all rows except those between Y0 and Y1 (inclusive)\n");
174 fprintf(stderr, " -crop WxH+X+Y Decompress only a rectangular subregion of the image\n");
Leon Scroggins IIIbd7903e2018-02-28 14:05:04 -0500175 fprintf(stderr, " [requires PBMPLUS (PPM/PGM), GIF, or Targa output format]\n");
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000176 fprintf(stderr, " -verbose or -debug Emit debug output\n");
DRC9665f5e2014-11-22 04:04:38 +0000177 fprintf(stderr, " -version Print version information and exit\n");
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000178 exit(EXIT_FAILURE);
179}
180
181
Thomas G. Lane489583f1996-02-07 00:00:00 +0000182LOCAL(int)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000183parse_switches (j_decompress_ptr cinfo, int argc, char **argv,
DRCe5eaf372014-05-09 18:00:32 +0000184 int last_file_arg_seen, boolean for_real)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000185/* Parse optional switches.
186 * Returns argv[] index of first file-name argument (== argc if none).
187 * Any file names with indexes <= last_file_arg_seen are ignored;
188 * they have presumably been processed in a previous iteration.
189 * (Pass 0 for last_file_arg_seen on the first or only iteration.)
190 * for_real is FALSE on the first (dummy) pass; we may skip any expensive
191 * processing.
192 */
193{
194 int argn;
Alex Naidis6eb7d372016-10-16 23:10:08 +0200195 char *arg;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000196
197 /* Set up default JPEG parameters. */
DRCe5eaf372014-05-09 18:00:32 +0000198 requested_fmt = DEFAULT_FMT; /* set default output file format */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000199 outfilename = NULL;
DRCab706232013-01-18 23:42:31 +0000200 memsrc = FALSE;
DRC15884f42015-06-25 03:44:37 +0000201 skip = FALSE;
DRC0ef076f2016-02-19 18:32:10 -0600202 crop = FALSE;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000203 cinfo->err->trace_level = 0;
204
205 /* Scan command line options, adjust parameters */
206
207 for (argn = 1; argn < argc; argn++) {
208 arg = argv[argn];
209 if (*arg != '-') {
210 /* Not a switch, must be a file name argument */
211 if (argn <= last_file_arg_seen) {
DRCe5eaf372014-05-09 18:00:32 +0000212 outfilename = NULL; /* -outfile applies to just one input file */
213 continue; /* ignore this name if previously processed */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000214 }
DRCe5eaf372014-05-09 18:00:32 +0000215 break; /* else done parsing switches */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000216 }
DRCe5eaf372014-05-09 18:00:32 +0000217 arg++; /* advance past switch marker character */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000218
219 if (keymatch(arg, "bmp", 1)) {
220 /* BMP output format. */
221 requested_fmt = FMT_BMP;
222
223 } else if (keymatch(arg, "colors", 1) || keymatch(arg, "colours", 1) ||
DRCe5eaf372014-05-09 18:00:32 +0000224 keymatch(arg, "quantize", 1) || keymatch(arg, "quantise", 1)) {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000225 /* Do color quantization. */
226 int val;
227
DRCe5eaf372014-05-09 18:00:32 +0000228 if (++argn >= argc) /* advance to next argument */
229 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000230 if (sscanf(argv[argn], "%d", &val) != 1)
DRCe5eaf372014-05-09 18:00:32 +0000231 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000232 cinfo->desired_number_of_colors = val;
233 cinfo->quantize_colors = TRUE;
234
235 } else if (keymatch(arg, "dct", 2)) {
236 /* Select IDCT algorithm. */
DRCe5eaf372014-05-09 18:00:32 +0000237 if (++argn >= argc) /* advance to next argument */
238 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000239 if (keymatch(argv[argn], "int", 1)) {
DRCe5eaf372014-05-09 18:00:32 +0000240 cinfo->dct_method = JDCT_ISLOW;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000241 } else if (keymatch(argv[argn], "fast", 2)) {
DRCe5eaf372014-05-09 18:00:32 +0000242 cinfo->dct_method = JDCT_IFAST;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000243 } else if (keymatch(argv[argn], "float", 2)) {
DRCe5eaf372014-05-09 18:00:32 +0000244 cinfo->dct_method = JDCT_FLOAT;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000245 } else
DRCe5eaf372014-05-09 18:00:32 +0000246 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000247
248 } else if (keymatch(arg, "dither", 2)) {
249 /* Select dithering algorithm. */
DRCe5eaf372014-05-09 18:00:32 +0000250 if (++argn >= argc) /* advance to next argument */
251 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000252 if (keymatch(argv[argn], "fs", 2)) {
DRCe5eaf372014-05-09 18:00:32 +0000253 cinfo->dither_mode = JDITHER_FS;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000254 } else if (keymatch(argv[argn], "none", 2)) {
DRCe5eaf372014-05-09 18:00:32 +0000255 cinfo->dither_mode = JDITHER_NONE;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000256 } else if (keymatch(argv[argn], "ordered", 2)) {
DRCe5eaf372014-05-09 18:00:32 +0000257 cinfo->dither_mode = JDITHER_ORDERED;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000258 } else
DRCe5eaf372014-05-09 18:00:32 +0000259 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000260
261 } else if (keymatch(arg, "debug", 1) || keymatch(arg, "verbose", 1)) {
262 /* Enable debug printouts. */
263 /* On first -d, print version identification */
264 static boolean printed_version = FALSE;
265
266 if (! printed_version) {
DRCe5eaf372014-05-09 18:00:32 +0000267 fprintf(stderr, "%s version %s (build %s)\n",
268 PACKAGE_NAME, VERSION, BUILD);
269 fprintf(stderr, "%s\n\n", JCOPYRIGHT);
270 fprintf(stderr, "Emulating The Independent JPEG Group's software, version %s\n\n",
271 JVERSION);
272 printed_version = TRUE;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000273 }
274 cinfo->err->trace_level++;
275
DRC9665f5e2014-11-22 04:04:38 +0000276 } else if (keymatch(arg, "version", 4)) {
277 fprintf(stderr, "%s version %s (build %s)\n",
278 PACKAGE_NAME, VERSION, BUILD);
DRC306add82014-11-22 04:25:04 +0000279 exit(EXIT_SUCCESS);
DRC9665f5e2014-11-22 04:04:38 +0000280
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000281 } else if (keymatch(arg, "fast", 1)) {
282 /* Select recommended processing options for quick-and-dirty output. */
283 cinfo->two_pass_quantize = FALSE;
284 cinfo->dither_mode = JDITHER_ORDERED;
285 if (! cinfo->quantize_colors) /* don't override an earlier -colors */
DRCe5eaf372014-05-09 18:00:32 +0000286 cinfo->desired_number_of_colors = 216;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000287 cinfo->dct_method = JDCT_FASTEST;
288 cinfo->do_fancy_upsampling = FALSE;
289
290 } else if (keymatch(arg, "gif", 1)) {
291 /* GIF output format. */
292 requested_fmt = FMT_GIF;
293
294 } else if (keymatch(arg, "grayscale", 2) || keymatch(arg, "greyscale",2)) {
295 /* Force monochrome output. */
296 cinfo->out_color_space = JCS_GRAYSCALE;
297
DRC6a833a82011-03-03 16:58:47 +0000298 } else if (keymatch(arg, "rgb", 2)) {
299 /* Force RGB output. */
300 cinfo->out_color_space = JCS_RGB;
301
DRC78df2e62014-05-12 09:23:57 +0000302 } else if (keymatch(arg, "rgb565", 2)) {
303 /* Force RGB565 output. */
304 cinfo->out_color_space = JCS_RGB565;
305
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000306 } else if (keymatch(arg, "map", 3)) {
307 /* Quantize to a color map taken from an input file. */
DRCe5eaf372014-05-09 18:00:32 +0000308 if (++argn >= argc) /* advance to next argument */
309 usage();
310 if (for_real) { /* too expensive to do twice! */
311#ifdef QUANT_2PASS_SUPPORTED /* otherwise can't quantize to supplied map */
Alex Naidis6eb7d372016-10-16 23:10:08 +0200312 FILE *mapfile;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000313
DRCe5eaf372014-05-09 18:00:32 +0000314 if ((mapfile = fopen(argv[argn], READ_BINARY)) == NULL) {
315 fprintf(stderr, "%s: can't open %s\n", progname, argv[argn]);
316 exit(EXIT_FAILURE);
317 }
318 read_color_map(cinfo, mapfile);
319 fclose(mapfile);
320 cinfo->quantize_colors = TRUE;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000321#else
DRCe5eaf372014-05-09 18:00:32 +0000322 ERREXIT(cinfo, JERR_NOT_COMPILED);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000323#endif
324 }
325
326 } else if (keymatch(arg, "maxmemory", 3)) {
327 /* Maximum memory in Kb (or Mb with 'm'). */
328 long lval;
329 char ch = 'x';
330
DRCe5eaf372014-05-09 18:00:32 +0000331 if (++argn >= argc) /* advance to next argument */
332 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000333 if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1)
DRCe5eaf372014-05-09 18:00:32 +0000334 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000335 if (ch == 'm' || ch == 'M')
DRCe5eaf372014-05-09 18:00:32 +0000336 lval *= 1000L;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000337 cinfo->mem->max_memory_to_use = lval * 1000L;
338
339 } else if (keymatch(arg, "nosmooth", 3)) {
340 /* Suppress fancy upsampling */
341 cinfo->do_fancy_upsampling = FALSE;
342
343 } else if (keymatch(arg, "onepass", 3)) {
344 /* Use fast one-pass quantization. */
345 cinfo->two_pass_quantize = FALSE;
346
347 } else if (keymatch(arg, "os2", 3)) {
348 /* BMP output format (OS/2 flavor). */
349 requested_fmt = FMT_OS2;
350
351 } else if (keymatch(arg, "outfile", 4)) {
352 /* Set output file name. */
DRCe5eaf372014-05-09 18:00:32 +0000353 if (++argn >= argc) /* advance to next argument */
354 usage();
355 outfilename = argv[argn]; /* save it away for later use */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000356
DRCab706232013-01-18 23:42:31 +0000357 } else if (keymatch(arg, "memsrc", 2)) {
358 /* Use in-memory source manager */
359#if JPEG_LIB_VERSION >= 80 || defined(MEM_SRCDST_SUPPORTED)
360 memsrc = TRUE;
361#else
362 fprintf(stderr, "%s: sorry, in-memory source manager was not compiled in\n",
363 progname);
364 exit(EXIT_FAILURE);
365#endif
366
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000367 } else if (keymatch(arg, "pnm", 1) || keymatch(arg, "ppm", 1)) {
368 /* PPM/PGM output format. */
369 requested_fmt = FMT_PPM;
370
371 } else if (keymatch(arg, "rle", 1)) {
372 /* RLE output format. */
373 requested_fmt = FMT_RLE;
374
DRCac30a1b2015-06-25 03:44:36 +0000375 } else if (keymatch(arg, "scale", 2)) {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000376 /* Scale the output image by a fraction M/N. */
DRCe5eaf372014-05-09 18:00:32 +0000377 if (++argn >= argc) /* advance to next argument */
378 usage();
Alex Naidis6eb7d372016-10-16 23:10:08 +0200379 if (sscanf(argv[argn], "%u/%u",
DRCe5eaf372014-05-09 18:00:32 +0000380 &cinfo->scale_num, &cinfo->scale_denom) != 2)
381 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000382
DRC15884f42015-06-25 03:44:37 +0000383 } else if (keymatch(arg, "skip", 2)) {
384 if (++argn >= argc)
385 usage();
DRC0ef076f2016-02-19 18:32:10 -0600386 if (sscanf(argv[argn], "%u,%u", &skip_start, &skip_end) != 2 ||
387 skip_start > skip_end)
DRC15884f42015-06-25 03:44:37 +0000388 usage();
389 skip = TRUE;
390
DRC0ef076f2016-02-19 18:32:10 -0600391 } else if (keymatch(arg, "crop", 2)) {
392 char c;
393 if (++argn >= argc)
394 usage();
395 if (sscanf(argv[argn], "%u%c%u+%u+%u", &crop_width, &c, &crop_height,
396 &crop_x, &crop_y) != 5 ||
397 (c != 'X' && c != 'x') || crop_width < 1 || crop_height < 1)
398 usage();
399 crop = TRUE;
400
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000401 } else if (keymatch(arg, "targa", 1)) {
402 /* Targa output format. */
403 requested_fmt = FMT_TARGA;
404
405 } else {
DRCe5eaf372014-05-09 18:00:32 +0000406 usage(); /* bogus switch */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000407 }
408 }
409
DRCe5eaf372014-05-09 18:00:32 +0000410 return argn; /* return index of next arg (file name) */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000411}
412
413
414/*
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000415 * Marker processor for COM and interesting APPn markers.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000416 * This replaces the library's built-in processor, which just skips the marker.
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000417 * We want to print out the marker as text, to the extent possible.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000418 * Note this code relies on a non-suspending data source.
419 */
420
Thomas G. Lane489583f1996-02-07 00:00:00 +0000421LOCAL(unsigned int)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000422jpeg_getc (j_decompress_ptr cinfo)
423/* Read next byte */
424{
Alex Naidis6eb7d372016-10-16 23:10:08 +0200425 struct jpeg_source_mgr *datasrc = cinfo->src;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000426
427 if (datasrc->bytes_in_buffer == 0) {
428 if (! (*datasrc->fill_input_buffer) (cinfo))
429 ERREXIT(cinfo, JERR_CANT_SUSPEND);
430 }
431 datasrc->bytes_in_buffer--;
432 return GETJOCTET(*datasrc->next_input_byte++);
433}
434
435
Thomas G. Lane489583f1996-02-07 00:00:00 +0000436METHODDEF(boolean)
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000437print_text_marker (j_decompress_ptr cinfo)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000438{
439 boolean traceit = (cinfo->err->trace_level >= 1);
Alex Naidis6eb7d372016-10-16 23:10:08 +0200440 long length;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000441 unsigned int ch;
442 unsigned int lastch = 0;
443
444 length = jpeg_getc(cinfo) << 8;
445 length += jpeg_getc(cinfo);
DRCe5eaf372014-05-09 18:00:32 +0000446 length -= 2; /* discount the length word itself */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000447
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000448 if (traceit) {
449 if (cinfo->unread_marker == JPEG_COM)
450 fprintf(stderr, "Comment, length %ld:\n", (long) length);
DRCe5eaf372014-05-09 18:00:32 +0000451 else /* assume it is an APPn otherwise */
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000452 fprintf(stderr, "APP%d, length %ld:\n",
DRCe5eaf372014-05-09 18:00:32 +0000453 cinfo->unread_marker - JPEG_APP0, (long) length);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000454 }
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000455
456 while (--length >= 0) {
457 ch = jpeg_getc(cinfo);
458 if (traceit) {
459 /* Emit the character in a readable form.
460 * Nonprintables are converted to \nnn form,
461 * while \ is converted to \\.
462 * Newlines in CR, CR/LF, or LF form will be printed as one newline.
463 */
464 if (ch == '\r') {
DRCe5eaf372014-05-09 18:00:32 +0000465 fprintf(stderr, "\n");
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000466 } else if (ch == '\n') {
DRCe5eaf372014-05-09 18:00:32 +0000467 if (lastch != '\r')
468 fprintf(stderr, "\n");
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000469 } else if (ch == '\\') {
DRCe5eaf372014-05-09 18:00:32 +0000470 fprintf(stderr, "\\\\");
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000471 } else if (isprint(ch)) {
DRCe5eaf372014-05-09 18:00:32 +0000472 putc(ch, stderr);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000473 } else {
DRCe5eaf372014-05-09 18:00:32 +0000474 fprintf(stderr, "\\%03o", ch);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000475 }
476 lastch = ch;
477 }
478 }
479
480 if (traceit)
481 fprintf(stderr, "\n");
482
483 return TRUE;
484}
485
486
487/*
488 * The main program.
489 */
490
Thomas G. Lane489583f1996-02-07 00:00:00 +0000491int
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000492main (int argc, char **argv)
493{
494 struct jpeg_decompress_struct cinfo;
495 struct jpeg_error_mgr jerr;
496#ifdef PROGRESS_REPORT
497 struct cdjpeg_progress_mgr progress;
498#endif
499 int file_index;
500 djpeg_dest_ptr dest_mgr = NULL;
Alex Naidis6eb7d372016-10-16 23:10:08 +0200501 FILE *input_file;
502 FILE *output_file;
DRCab706232013-01-18 23:42:31 +0000503 unsigned char *inbuffer = NULL;
504 unsigned long insize = 0;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000505 JDIMENSION num_scanlines;
506
507 /* On Mac, fetch a command line. */
508#ifdef USE_CCOMMAND
509 argc = ccommand(&argv);
510#endif
511
512 progname = argv[0];
513 if (progname == NULL || progname[0] == 0)
DRCe5eaf372014-05-09 18:00:32 +0000514 progname = "djpeg"; /* in case C library doesn't provide it */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000515
516 /* Initialize the JPEG decompression object with default error handling. */
517 cinfo.err = jpeg_std_error(&jerr);
518 jpeg_create_decompress(&cinfo);
519 /* Add some application-specific error messages (from cderror.h) */
Thomas G. Lane9ba2f5e1994-12-07 00:00:00 +0000520 jerr.addon_message_table = cdjpeg_message_table;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000521 jerr.first_addon_message = JMSG_FIRSTADDONCODE;
522 jerr.last_addon_message = JMSG_LASTADDONCODE;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000523
524 /* Insert custom marker processor for COM and APP12.
525 * APP12 is used by some digital camera makers for textual info,
526 * so we provide the ability to display it as text.
527 * If you like, additional APPn marker types can be selected for display,
DRC39ea5622010-10-12 01:55:31 +0000528 * but don't try to override APP0 or APP14 this way (see libjpeg.txt).
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000529 */
530 jpeg_set_marker_processor(&cinfo, JPEG_COM, print_text_marker);
531 jpeg_set_marker_processor(&cinfo, JPEG_APP0+12, print_text_marker);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000532
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000533 /* Scan command line to find file names. */
534 /* It is convenient to use just one switch-parsing routine, but the switch
535 * values read here are ignored; we will rescan the switches after opening
536 * the input file.
537 * (Exception: tracing level set here controls verbosity for COM markers
538 * found during jpeg_read_header...)
539 */
540
541 file_index = parse_switches(&cinfo, argc, argv, 0, FALSE);
542
543#ifdef TWO_FILE_COMMANDLINE
544 /* Must have either -outfile switch or explicit output file name */
545 if (outfilename == NULL) {
546 if (file_index != argc-2) {
547 fprintf(stderr, "%s: must name one input and one output file\n",
DRCe5eaf372014-05-09 18:00:32 +0000548 progname);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000549 usage();
550 }
551 outfilename = argv[file_index+1];
552 } else {
553 if (file_index != argc-1) {
554 fprintf(stderr, "%s: must name one input and one output file\n",
DRCe5eaf372014-05-09 18:00:32 +0000555 progname);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000556 usage();
557 }
558 }
559#else
560 /* Unix style: expect zero or one file name */
561 if (file_index < argc-1) {
562 fprintf(stderr, "%s: only one input file\n", progname);
563 usage();
564 }
565#endif /* TWO_FILE_COMMANDLINE */
566
567 /* Open the input file. */
568 if (file_index < argc) {
569 if ((input_file = fopen(argv[file_index], READ_BINARY)) == NULL) {
570 fprintf(stderr, "%s: can't open %s\n", progname, argv[file_index]);
571 exit(EXIT_FAILURE);
572 }
573 } else {
574 /* default input file is stdin */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000575 input_file = read_stdin();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000576 }
577
578 /* Open the output file. */
579 if (outfilename != NULL) {
580 if ((output_file = fopen(outfilename, WRITE_BINARY)) == NULL) {
581 fprintf(stderr, "%s: can't open %s\n", progname, outfilename);
582 exit(EXIT_FAILURE);
583 }
584 } else {
585 /* default output file is stdout */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000586 output_file = write_stdout();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000587 }
588
589#ifdef PROGRESS_REPORT
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000590 start_progress_monitor((j_common_ptr) &cinfo, &progress);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000591#endif
592
593 /* Specify data source for decompression */
DRCab706232013-01-18 23:42:31 +0000594#if JPEG_LIB_VERSION >= 80 || defined(MEM_SRCDST_SUPPORTED)
595 if (memsrc) {
596 size_t nbytes;
597 do {
598 inbuffer = (unsigned char *)realloc(inbuffer, insize + INPUT_BUF_SIZE);
599 if (inbuffer == NULL) {
600 fprintf(stderr, "%s: memory allocation failure\n", progname);
601 exit(EXIT_FAILURE);
602 }
603 nbytes = JFREAD(input_file, &inbuffer[insize], INPUT_BUF_SIZE);
DRCc45653e2013-10-12 21:52:48 +0000604 if (nbytes < INPUT_BUF_SIZE && ferror(input_file)) {
DRCab706232013-01-18 23:42:31 +0000605 if (file_index < argc)
606 fprintf(stderr, "%s: can't read from %s\n", progname,
607 argv[file_index]);
608 else
609 fprintf(stderr, "%s: can't read from stdin\n", progname);
610 }
DRC736fb062013-01-18 23:45:06 +0000611 insize += (unsigned long)nbytes;
DRCab706232013-01-18 23:42:31 +0000612 } while (nbytes == INPUT_BUF_SIZE);
613 fprintf(stderr, "Compressed size: %lu bytes\n", insize);
614 jpeg_mem_src(&cinfo, inbuffer, insize);
615 } else
616#endif
617 jpeg_stdio_src(&cinfo, input_file);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000618
619 /* Read file header, set default decompression parameters */
620 (void) jpeg_read_header(&cinfo, TRUE);
621
622 /* Adjust default decompression parameters by re-parsing the options */
623 file_index = parse_switches(&cinfo, argc, argv, 0, TRUE);
624
625 /* Initialize the output module now to let it override any crucial
626 * option settings (for instance, GIF wants to force color quantization).
627 */
628 switch (requested_fmt) {
629#ifdef BMP_SUPPORTED
630 case FMT_BMP:
631 dest_mgr = jinit_write_bmp(&cinfo, FALSE);
632 break;
633 case FMT_OS2:
634 dest_mgr = jinit_write_bmp(&cinfo, TRUE);
635 break;
636#endif
637#ifdef GIF_SUPPORTED
638 case FMT_GIF:
639 dest_mgr = jinit_write_gif(&cinfo);
640 break;
641#endif
642#ifdef PPM_SUPPORTED
643 case FMT_PPM:
644 dest_mgr = jinit_write_ppm(&cinfo);
645 break;
646#endif
647#ifdef RLE_SUPPORTED
648 case FMT_RLE:
649 dest_mgr = jinit_write_rle(&cinfo);
650 break;
651#endif
652#ifdef TARGA_SUPPORTED
653 case FMT_TARGA:
654 dest_mgr = jinit_write_targa(&cinfo);
655 break;
656#endif
657 default:
658 ERREXIT(&cinfo, JERR_UNSUPPORTED_FORMAT);
659 break;
660 }
661 dest_mgr->output_file = output_file;
662
663 /* Start decompressor */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000664 (void) jpeg_start_decompress(&cinfo);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000665
DRC0ef076f2016-02-19 18:32:10 -0600666 /* Skip rows */
667 if (skip) {
DRCac30a1b2015-06-25 03:44:36 +0000668 JDIMENSION tmp;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000669
DRC0ef076f2016-02-19 18:32:10 -0600670 /* Check for valid skip_end. We cannot check this value until after
DRCac30a1b2015-06-25 03:44:36 +0000671 * jpeg_start_decompress() is called. Note that we have already verified
DRC0ef076f2016-02-19 18:32:10 -0600672 * that skip_start <= skip_end.
DRCac30a1b2015-06-25 03:44:36 +0000673 */
DRC0ef076f2016-02-19 18:32:10 -0600674 if (skip_end > cinfo.output_height - 1) {
675 fprintf(stderr, "%s: skip region exceeds image height %d\n", progname,
676 cinfo.output_height);
DRCac30a1b2015-06-25 03:44:36 +0000677 exit(EXIT_FAILURE);
678 }
679
680 /* Write output file header. This is a hack to ensure that the destination
DRC0ef076f2016-02-19 18:32:10 -0600681 * manager creates an output image of the proper size.
DRCac30a1b2015-06-25 03:44:36 +0000682 */
683 tmp = cinfo.output_height;
DRC0ef076f2016-02-19 18:32:10 -0600684 cinfo.output_height -= (skip_end - skip_start + 1);
DRCac30a1b2015-06-25 03:44:36 +0000685 (*dest_mgr->start_output) (&cinfo, dest_mgr);
686 cinfo.output_height = tmp;
687
688 /* Process data */
DRC0ef076f2016-02-19 18:32:10 -0600689 while (cinfo.output_scanline < skip_start) {
690 num_scanlines = jpeg_read_scanlines(&cinfo, dest_mgr->buffer,
691 dest_mgr->buffer_height);
692 (*dest_mgr->put_pixel_rows) (&cinfo, dest_mgr, num_scanlines);
693 }
694 jpeg_skip_scanlines(&cinfo, skip_end - skip_start + 1);
695 while (cinfo.output_scanline < cinfo.output_height) {
696 num_scanlines = jpeg_read_scanlines(&cinfo, dest_mgr->buffer,
697 dest_mgr->buffer_height);
698 (*dest_mgr->put_pixel_rows) (&cinfo, dest_mgr, num_scanlines);
DRCac30a1b2015-06-25 03:44:36 +0000699 }
DRCac30a1b2015-06-25 03:44:36 +0000700
DRC0ef076f2016-02-19 18:32:10 -0600701 /* Decompress a subregion */
702 } else if (crop) {
703 JDIMENSION tmp;
704
705 /* Check for valid crop dimensions. We cannot check these values until
706 * after jpeg_start_decompress() is called.
707 */
708 if (crop_x + crop_width > cinfo.output_width ||
709 crop_y + crop_height > cinfo.output_height) {
710 fprintf(stderr, "%s: crop dimensions exceed image dimensions %d x %d\n",
711 progname, cinfo.output_width, cinfo.output_height);
712 exit(EXIT_FAILURE);
713 }
714
715 jpeg_crop_scanline(&cinfo, &crop_x, &crop_width);
Leon Scroggins IIIbd7903e2018-02-28 14:05:04 -0500716 if (dest_mgr->calc_buffer_dimensions)
717 (*dest_mgr->calc_buffer_dimensions) (&cinfo, dest_mgr);
718 else
719 ERREXIT(&cinfo, JERR_UNSUPPORTED_FORMAT);
DRC0ef076f2016-02-19 18:32:10 -0600720
721 /* Write output file header. This is a hack to ensure that the destination
722 * manager creates an output image of the proper size.
723 */
724 tmp = cinfo.output_height;
725 cinfo.output_height = crop_height;
726 (*dest_mgr->start_output) (&cinfo, dest_mgr);
727 cinfo.output_height = tmp;
728
729 /* Process data */
730 jpeg_skip_scanlines(&cinfo, crop_y);
731 while (cinfo.output_scanline < crop_y + crop_height) {
732 num_scanlines = jpeg_read_scanlines(&cinfo, dest_mgr->buffer,
733 dest_mgr->buffer_height);
734 (*dest_mgr->put_pixel_rows) (&cinfo, dest_mgr, num_scanlines);
735 }
736 jpeg_skip_scanlines(&cinfo, cinfo.output_height - crop_y - crop_height);
737
738 /* Normal full-image decompress */
DRCac30a1b2015-06-25 03:44:36 +0000739 } else {
740 /* Write output file header */
741 (*dest_mgr->start_output) (&cinfo, dest_mgr);
742
743 /* Process data */
744 while (cinfo.output_scanline < cinfo.output_height) {
745 num_scanlines = jpeg_read_scanlines(&cinfo, dest_mgr->buffer,
746 dest_mgr->buffer_height);
747 (*dest_mgr->put_pixel_rows) (&cinfo, dest_mgr, num_scanlines);
748 }
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000749 }
750
751#ifdef PROGRESS_REPORT
752 /* Hack: count final pass as done in case finish_output does an extra pass.
753 * The library won't have updated completed_passes.
754 */
755 progress.pub.completed_passes = progress.pub.total_passes;
756#endif
757
758 /* Finish decompression and release memory.
759 * I must do it in this order because output module has allocated memory
760 * of lifespan JPOOL_IMAGE; it needs to finish before releasing memory.
761 */
762 (*dest_mgr->finish_output) (&cinfo, dest_mgr);
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000763 (void) jpeg_finish_decompress(&cinfo);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000764 jpeg_destroy_decompress(&cinfo);
765
Thomas G. Lane9ba2f5e1994-12-07 00:00:00 +0000766 /* Close files, if we opened them */
767 if (input_file != stdin)
768 fclose(input_file);
769 if (output_file != stdout)
770 fclose(output_file);
771
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000772#ifdef PROGRESS_REPORT
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000773 end_progress_monitor((j_common_ptr) &cinfo);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000774#endif
775
DRCab706232013-01-18 23:42:31 +0000776 if (memsrc && inbuffer != NULL)
777 free(inbuffer);
778
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000779 /* All done. */
780 exit(jerr.num_warnings ? EXIT_WARNING : EXIT_SUCCESS);
DRCe5eaf372014-05-09 18:00:32 +0000781 return 0; /* suppress no-return-value warnings */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000782}