blob: 6e3a0b991a5f04cae72982a921da03c55a3269ec [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.
DRCa6ef2822013-09-28 03:23:49 +00006 * libjpeg-turbo Modifications:
DRCac30a1b2015-06-25 03:44:36 +00007 * Copyright (C) 2010-2011, 2013-2015, D. R. Commander.
8 * Copyright (C) 2015, Google, Inc.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00009 * For conditions of distribution and use, see the accompanying README file.
10 *
11 * This file contains a command-line user interface for the JPEG decompressor.
12 * It should work on any system with Unix- or MS-DOS-style command lines.
13 *
14 * Two different command line styles are permitted, depending on the
15 * compile-time switch TWO_FILE_COMMANDLINE:
DRCe5eaf372014-05-09 18:00:32 +000016 * djpeg [options] inputfile outputfile
17 * djpeg [options] [inputfile]
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000018 * In the second style, output is always to standard output, which you'd
19 * normally redirect to a file or pipe to some other program. Input is
20 * either from a named file or from standard input (typically redirected).
21 * The second style is convenient on Unix but is unhelpful on systems that
22 * don't support pipes. Also, you MUST use the first style if your system
23 * doesn't do binary I/O to stdin/stdout.
24 * To simplify script writing, the "-outfile" switch is provided. The syntax
DRCe5eaf372014-05-09 18:00:32 +000025 * djpeg [options] -outfile outputfile inputfile
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000026 * works regardless of which command line style is used.
27 */
28
DRCe5eaf372014-05-09 18:00:32 +000029#include "cdjpeg.h" /* Common decls for cjpeg/djpeg applications */
30#include "jversion.h" /* for version message */
DRCff6961f2014-04-20 09:17:11 +000031#include "jconfigint.h"
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000032
DRCe5eaf372014-05-09 18:00:32 +000033#include <ctype.h> /* to declare isprint() */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000034
DRCe5eaf372014-05-09 18:00:32 +000035#ifdef USE_CCOMMAND /* command-line reader for Macintosh */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000036#ifdef __MWERKS__
Thomas G. Lane489583f1996-02-07 00:00:00 +000037#include <SIOUX.h> /* Metrowerks needs this */
DRCe5eaf372014-05-09 18:00:32 +000038#include <console.h> /* ... and this */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000039#endif
40#ifdef THINK_C
DRCe5eaf372014-05-09 18:00:32 +000041#include <console.h> /* Think declares it here */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000042#endif
43#endif
44
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000045
Thomas G. Lane9ba2f5e1994-12-07 00:00:00 +000046/* Create the add-on message string table. */
47
DRCe5eaf372014-05-09 18:00:32 +000048#define JMESSAGE(code,string) string ,
Thomas G. Lane9ba2f5e1994-12-07 00:00:00 +000049
50static const char * const cdjpeg_message_table[] = {
51#include "cderror.h"
52 NULL
53};
54
55
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000056/*
57 * This list defines the known output image formats
58 * (not all of which need be supported by a given version).
59 * You can change the default output format by defining DEFAULT_FMT;
60 * indeed, you had better do so if you undefine PPM_SUPPORTED.
61 */
62
63typedef enum {
DRCe5eaf372014-05-09 18:00:32 +000064 FMT_BMP, /* BMP format (Windows flavor) */
65 FMT_GIF, /* GIF format */
66 FMT_OS2, /* BMP format (OS/2 flavor) */
67 FMT_PPM, /* PPM/PGM (PBMPLUS formats) */
68 FMT_RLE, /* RLE format */
69 FMT_TARGA, /* Targa format */
70 FMT_TIFF /* TIFF format */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000071} IMAGE_FORMATS;
72
DRCe5eaf372014-05-09 18:00:32 +000073#ifndef DEFAULT_FMT /* so can override from CFLAGS in Makefile */
74#define DEFAULT_FMT FMT_PPM
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000075#endif
76
77static IMAGE_FORMATS requested_fmt;
78
79
80/*
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000081 * Argument-parsing code.
82 * The switch parser is designed to be useful with DOS-style command line
83 * syntax, ie, intermixed switches and file names, where only the switches
84 * to the left of a given file name affect processing of that file.
85 * The main program in this file doesn't actually use this capability...
86 */
87
88
DRCe5eaf372014-05-09 18:00:32 +000089static const char * progname; /* program name for error messages */
90static char * outfilename; /* for -outfile switch */
DRCab706232013-01-18 23:42:31 +000091boolean memsrc; /* for -memsrc switch */
DRC15884f42015-06-25 03:44:37 +000092boolean stripe, skip;
DRCac30a1b2015-06-25 03:44:36 +000093JDIMENSION startY, endY;
DRCab706232013-01-18 23:42:31 +000094#define INPUT_BUF_SIZE 4096
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000095
96
Thomas G. Lane489583f1996-02-07 00:00:00 +000097LOCAL(void)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000098usage (void)
99/* complain about bad command line */
100{
101 fprintf(stderr, "usage: %s [switches] ", progname);
102#ifdef TWO_FILE_COMMANDLINE
103 fprintf(stderr, "inputfile outputfile\n");
104#else
105 fprintf(stderr, "[inputfile]\n");
106#endif
107
108 fprintf(stderr, "Switches (names may be abbreviated):\n");
109 fprintf(stderr, " -colors N Reduce image to no more than N colors\n");
110 fprintf(stderr, " -fast Fast, low-quality processing\n");
111 fprintf(stderr, " -grayscale Force grayscale output\n");
DRC6a833a82011-03-03 16:58:47 +0000112 fprintf(stderr, " -rgb Force RGB output\n");
DRC78df2e62014-05-12 09:23:57 +0000113 fprintf(stderr, " -rgb565 Force RGB565 output\n");
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000114#ifdef IDCT_SCALING_SUPPORTED
115 fprintf(stderr, " -scale M/N Scale output image by fraction M/N, eg, 1/8\n");
116#endif
117#ifdef BMP_SUPPORTED
118 fprintf(stderr, " -bmp Select BMP output format (Windows style)%s\n",
DRCe5eaf372014-05-09 18:00:32 +0000119 (DEFAULT_FMT == FMT_BMP ? " (default)" : ""));
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000120#endif
121#ifdef GIF_SUPPORTED
122 fprintf(stderr, " -gif Select GIF output format%s\n",
DRCe5eaf372014-05-09 18:00:32 +0000123 (DEFAULT_FMT == FMT_GIF ? " (default)" : ""));
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000124#endif
125#ifdef BMP_SUPPORTED
126 fprintf(stderr, " -os2 Select BMP output format (OS/2 style)%s\n",
DRCe5eaf372014-05-09 18:00:32 +0000127 (DEFAULT_FMT == FMT_OS2 ? " (default)" : ""));
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000128#endif
129#ifdef PPM_SUPPORTED
130 fprintf(stderr, " -pnm Select PBMPLUS (PPM/PGM) output format%s\n",
DRCe5eaf372014-05-09 18:00:32 +0000131 (DEFAULT_FMT == FMT_PPM ? " (default)" : ""));
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000132#endif
133#ifdef RLE_SUPPORTED
134 fprintf(stderr, " -rle Select Utah RLE output format%s\n",
DRCe5eaf372014-05-09 18:00:32 +0000135 (DEFAULT_FMT == FMT_RLE ? " (default)" : ""));
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000136#endif
137#ifdef TARGA_SUPPORTED
138 fprintf(stderr, " -targa Select Targa output format%s\n",
DRCe5eaf372014-05-09 18:00:32 +0000139 (DEFAULT_FMT == FMT_TARGA ? " (default)" : ""));
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000140#endif
141 fprintf(stderr, "Switches for advanced users:\n");
142#ifdef DCT_ISLOW_SUPPORTED
143 fprintf(stderr, " -dct int Use integer DCT method%s\n",
DRCe5eaf372014-05-09 18:00:32 +0000144 (JDCT_DEFAULT == JDCT_ISLOW ? " (default)" : ""));
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000145#endif
146#ifdef DCT_IFAST_SUPPORTED
147 fprintf(stderr, " -dct fast Use fast integer DCT (less accurate)%s\n",
DRCe5eaf372014-05-09 18:00:32 +0000148 (JDCT_DEFAULT == JDCT_IFAST ? " (default)" : ""));
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000149#endif
150#ifdef DCT_FLOAT_SUPPORTED
151 fprintf(stderr, " -dct float Use floating-point DCT method%s\n",
DRCe5eaf372014-05-09 18:00:32 +0000152 (JDCT_DEFAULT == JDCT_FLOAT ? " (default)" : ""));
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000153#endif
154 fprintf(stderr, " -dither fs Use F-S dithering (default)\n");
155 fprintf(stderr, " -dither none Don't use dithering in quantization\n");
156 fprintf(stderr, " -dither ordered Use ordered dither (medium speed, quality)\n");
157#ifdef QUANT_2PASS_SUPPORTED
158 fprintf(stderr, " -map FILE Map to colors used in named image file\n");
159#endif
160 fprintf(stderr, " -nosmooth Don't use high-quality upsampling\n");
161#ifdef QUANT_1PASS_SUPPORTED
162 fprintf(stderr, " -onepass Use 1-pass quantization (fast, low quality)\n");
163#endif
164 fprintf(stderr, " -maxmemory N Maximum memory to use (in kbytes)\n");
165 fprintf(stderr, " -outfile name Specify name for output file\n");
DRCab706232013-01-18 23:42:31 +0000166#if JPEG_LIB_VERSION >= 80 || defined(MEM_SRCDST_SUPPORTED)
167 fprintf(stderr, " -memsrc Load input file into memory before decompressing\n");
168#endif
169
DRC15884f42015-06-25 03:44:37 +0000170 fprintf(stderr, " -skip Y0,Y1 Skip decoding a horizontal stripe of the image [Y0, Y1)\n");
171 fprintf(stderr, " -stripe Y0,Y1 Decode only a horizontal stripe of the image [Y0, Y1)\n");
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000172 fprintf(stderr, " -verbose or -debug Emit debug output\n");
DRC9665f5e2014-11-22 04:04:38 +0000173 fprintf(stderr, " -version Print version information and exit\n");
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000174 exit(EXIT_FAILURE);
175}
176
177
Thomas G. Lane489583f1996-02-07 00:00:00 +0000178LOCAL(int)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000179parse_switches (j_decompress_ptr cinfo, int argc, char **argv,
DRCe5eaf372014-05-09 18:00:32 +0000180 int last_file_arg_seen, boolean for_real)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000181/* Parse optional switches.
182 * Returns argv[] index of first file-name argument (== argc if none).
183 * Any file names with indexes <= last_file_arg_seen are ignored;
184 * they have presumably been processed in a previous iteration.
185 * (Pass 0 for last_file_arg_seen on the first or only iteration.)
186 * for_real is FALSE on the first (dummy) pass; we may skip any expensive
187 * processing.
188 */
189{
190 int argn;
191 char * arg;
192
193 /* Set up default JPEG parameters. */
DRCe5eaf372014-05-09 18:00:32 +0000194 requested_fmt = DEFAULT_FMT; /* set default output file format */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000195 outfilename = NULL;
DRCab706232013-01-18 23:42:31 +0000196 memsrc = FALSE;
DRCac30a1b2015-06-25 03:44:36 +0000197 stripe = FALSE;
DRC15884f42015-06-25 03:44:37 +0000198 skip = FALSE;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000199 cinfo->err->trace_level = 0;
200
201 /* Scan command line options, adjust parameters */
202
203 for (argn = 1; argn < argc; argn++) {
204 arg = argv[argn];
205 if (*arg != '-') {
206 /* Not a switch, must be a file name argument */
207 if (argn <= last_file_arg_seen) {
DRCe5eaf372014-05-09 18:00:32 +0000208 outfilename = NULL; /* -outfile applies to just one input file */
209 continue; /* ignore this name if previously processed */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000210 }
DRCe5eaf372014-05-09 18:00:32 +0000211 break; /* else done parsing switches */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000212 }
DRCe5eaf372014-05-09 18:00:32 +0000213 arg++; /* advance past switch marker character */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000214
215 if (keymatch(arg, "bmp", 1)) {
216 /* BMP output format. */
217 requested_fmt = FMT_BMP;
218
219 } else if (keymatch(arg, "colors", 1) || keymatch(arg, "colours", 1) ||
DRCe5eaf372014-05-09 18:00:32 +0000220 keymatch(arg, "quantize", 1) || keymatch(arg, "quantise", 1)) {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000221 /* Do color quantization. */
222 int val;
223
DRCe5eaf372014-05-09 18:00:32 +0000224 if (++argn >= argc) /* advance to next argument */
225 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000226 if (sscanf(argv[argn], "%d", &val) != 1)
DRCe5eaf372014-05-09 18:00:32 +0000227 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000228 cinfo->desired_number_of_colors = val;
229 cinfo->quantize_colors = TRUE;
230
231 } else if (keymatch(arg, "dct", 2)) {
232 /* Select IDCT algorithm. */
DRCe5eaf372014-05-09 18:00:32 +0000233 if (++argn >= argc) /* advance to next argument */
234 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000235 if (keymatch(argv[argn], "int", 1)) {
DRCe5eaf372014-05-09 18:00:32 +0000236 cinfo->dct_method = JDCT_ISLOW;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000237 } else if (keymatch(argv[argn], "fast", 2)) {
DRCe5eaf372014-05-09 18:00:32 +0000238 cinfo->dct_method = JDCT_IFAST;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000239 } else if (keymatch(argv[argn], "float", 2)) {
DRCe5eaf372014-05-09 18:00:32 +0000240 cinfo->dct_method = JDCT_FLOAT;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000241 } else
DRCe5eaf372014-05-09 18:00:32 +0000242 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000243
244 } else if (keymatch(arg, "dither", 2)) {
245 /* Select dithering algorithm. */
DRCe5eaf372014-05-09 18:00:32 +0000246 if (++argn >= argc) /* advance to next argument */
247 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000248 if (keymatch(argv[argn], "fs", 2)) {
DRCe5eaf372014-05-09 18:00:32 +0000249 cinfo->dither_mode = JDITHER_FS;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000250 } else if (keymatch(argv[argn], "none", 2)) {
DRCe5eaf372014-05-09 18:00:32 +0000251 cinfo->dither_mode = JDITHER_NONE;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000252 } else if (keymatch(argv[argn], "ordered", 2)) {
DRCe5eaf372014-05-09 18:00:32 +0000253 cinfo->dither_mode = JDITHER_ORDERED;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000254 } else
DRCe5eaf372014-05-09 18:00:32 +0000255 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000256
257 } else if (keymatch(arg, "debug", 1) || keymatch(arg, "verbose", 1)) {
258 /* Enable debug printouts. */
259 /* On first -d, print version identification */
260 static boolean printed_version = FALSE;
261
262 if (! printed_version) {
DRCe5eaf372014-05-09 18:00:32 +0000263 fprintf(stderr, "%s version %s (build %s)\n",
264 PACKAGE_NAME, VERSION, BUILD);
265 fprintf(stderr, "%s\n\n", JCOPYRIGHT);
266 fprintf(stderr, "Emulating The Independent JPEG Group's software, version %s\n\n",
267 JVERSION);
268 printed_version = TRUE;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000269 }
270 cinfo->err->trace_level++;
271
DRC9665f5e2014-11-22 04:04:38 +0000272 } else if (keymatch(arg, "version", 4)) {
273 fprintf(stderr, "%s version %s (build %s)\n",
274 PACKAGE_NAME, VERSION, BUILD);
DRC306add82014-11-22 04:25:04 +0000275 exit(EXIT_SUCCESS);
DRC9665f5e2014-11-22 04:04:38 +0000276
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000277 } else if (keymatch(arg, "fast", 1)) {
278 /* Select recommended processing options for quick-and-dirty output. */
279 cinfo->two_pass_quantize = FALSE;
280 cinfo->dither_mode = JDITHER_ORDERED;
281 if (! cinfo->quantize_colors) /* don't override an earlier -colors */
DRCe5eaf372014-05-09 18:00:32 +0000282 cinfo->desired_number_of_colors = 216;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000283 cinfo->dct_method = JDCT_FASTEST;
284 cinfo->do_fancy_upsampling = FALSE;
285
286 } else if (keymatch(arg, "gif", 1)) {
287 /* GIF output format. */
288 requested_fmt = FMT_GIF;
289
290 } else if (keymatch(arg, "grayscale", 2) || keymatch(arg, "greyscale",2)) {
291 /* Force monochrome output. */
292 cinfo->out_color_space = JCS_GRAYSCALE;
293
DRC6a833a82011-03-03 16:58:47 +0000294 } else if (keymatch(arg, "rgb", 2)) {
295 /* Force RGB output. */
296 cinfo->out_color_space = JCS_RGB;
297
DRC78df2e62014-05-12 09:23:57 +0000298 } else if (keymatch(arg, "rgb565", 2)) {
299 /* Force RGB565 output. */
300 cinfo->out_color_space = JCS_RGB565;
301
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000302 } else if (keymatch(arg, "map", 3)) {
303 /* Quantize to a color map taken from an input file. */
DRCe5eaf372014-05-09 18:00:32 +0000304 if (++argn >= argc) /* advance to next argument */
305 usage();
306 if (for_real) { /* too expensive to do twice! */
307#ifdef QUANT_2PASS_SUPPORTED /* otherwise can't quantize to supplied map */
308 FILE * mapfile;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000309
DRCe5eaf372014-05-09 18:00:32 +0000310 if ((mapfile = fopen(argv[argn], READ_BINARY)) == NULL) {
311 fprintf(stderr, "%s: can't open %s\n", progname, argv[argn]);
312 exit(EXIT_FAILURE);
313 }
314 read_color_map(cinfo, mapfile);
315 fclose(mapfile);
316 cinfo->quantize_colors = TRUE;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000317#else
DRCe5eaf372014-05-09 18:00:32 +0000318 ERREXIT(cinfo, JERR_NOT_COMPILED);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000319#endif
320 }
321
322 } else if (keymatch(arg, "maxmemory", 3)) {
323 /* Maximum memory in Kb (or Mb with 'm'). */
324 long lval;
325 char ch = 'x';
326
DRCe5eaf372014-05-09 18:00:32 +0000327 if (++argn >= argc) /* advance to next argument */
328 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000329 if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1)
DRCe5eaf372014-05-09 18:00:32 +0000330 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000331 if (ch == 'm' || ch == 'M')
DRCe5eaf372014-05-09 18:00:32 +0000332 lval *= 1000L;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000333 cinfo->mem->max_memory_to_use = lval * 1000L;
334
335 } else if (keymatch(arg, "nosmooth", 3)) {
336 /* Suppress fancy upsampling */
337 cinfo->do_fancy_upsampling = FALSE;
338
339 } else if (keymatch(arg, "onepass", 3)) {
340 /* Use fast one-pass quantization. */
341 cinfo->two_pass_quantize = FALSE;
342
343 } else if (keymatch(arg, "os2", 3)) {
344 /* BMP output format (OS/2 flavor). */
345 requested_fmt = FMT_OS2;
346
347 } else if (keymatch(arg, "outfile", 4)) {
348 /* Set output file name. */
DRCe5eaf372014-05-09 18:00:32 +0000349 if (++argn >= argc) /* advance to next argument */
350 usage();
351 outfilename = argv[argn]; /* save it away for later use */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000352
DRCab706232013-01-18 23:42:31 +0000353 } else if (keymatch(arg, "memsrc", 2)) {
354 /* Use in-memory source manager */
355#if JPEG_LIB_VERSION >= 80 || defined(MEM_SRCDST_SUPPORTED)
356 memsrc = TRUE;
357#else
358 fprintf(stderr, "%s: sorry, in-memory source manager was not compiled in\n",
359 progname);
360 exit(EXIT_FAILURE);
361#endif
362
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000363 } else if (keymatch(arg, "pnm", 1) || keymatch(arg, "ppm", 1)) {
364 /* PPM/PGM output format. */
365 requested_fmt = FMT_PPM;
366
367 } else if (keymatch(arg, "rle", 1)) {
368 /* RLE output format. */
369 requested_fmt = FMT_RLE;
370
DRCac30a1b2015-06-25 03:44:36 +0000371 } else if (keymatch(arg, "scale", 2)) {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000372 /* Scale the output image by a fraction M/N. */
DRCe5eaf372014-05-09 18:00:32 +0000373 if (++argn >= argc) /* advance to next argument */
374 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000375 if (sscanf(argv[argn], "%d/%d",
DRCe5eaf372014-05-09 18:00:32 +0000376 &cinfo->scale_num, &cinfo->scale_denom) != 2)
377 usage();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000378
DRCac30a1b2015-06-25 03:44:36 +0000379 } else if (keymatch(arg, "stripe", 2)) {
380 if (++argn >= argc)
381 usage();
382 if (sscanf(argv[argn], "%d,%d", &startY, &endY) != 2 || startY > endY)
383 usage();
384 stripe = TRUE;
385
DRC15884f42015-06-25 03:44:37 +0000386
387 } else if (keymatch(arg, "skip", 2)) {
388 if (++argn >= argc)
389 usage();
390 if (sscanf(argv[argn], "%d,%d", &startY, &endY) != 2 || startY > endY)
391 usage();
392 skip = TRUE;
393
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000394 } else if (keymatch(arg, "targa", 1)) {
395 /* Targa output format. */
396 requested_fmt = FMT_TARGA;
397
398 } else {
DRCe5eaf372014-05-09 18:00:32 +0000399 usage(); /* bogus switch */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000400 }
401 }
402
DRCe5eaf372014-05-09 18:00:32 +0000403 return argn; /* return index of next arg (file name) */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000404}
405
406
407/*
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000408 * Marker processor for COM and interesting APPn markers.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000409 * This replaces the library's built-in processor, which just skips the marker.
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000410 * We want to print out the marker as text, to the extent possible.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000411 * Note this code relies on a non-suspending data source.
412 */
413
Thomas G. Lane489583f1996-02-07 00:00:00 +0000414LOCAL(unsigned int)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000415jpeg_getc (j_decompress_ptr cinfo)
416/* Read next byte */
417{
418 struct jpeg_source_mgr * datasrc = cinfo->src;
419
420 if (datasrc->bytes_in_buffer == 0) {
421 if (! (*datasrc->fill_input_buffer) (cinfo))
422 ERREXIT(cinfo, JERR_CANT_SUSPEND);
423 }
424 datasrc->bytes_in_buffer--;
425 return GETJOCTET(*datasrc->next_input_byte++);
426}
427
428
Thomas G. Lane489583f1996-02-07 00:00:00 +0000429METHODDEF(boolean)
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000430print_text_marker (j_decompress_ptr cinfo)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000431{
432 boolean traceit = (cinfo->err->trace_level >= 1);
433 INT32 length;
434 unsigned int ch;
435 unsigned int lastch = 0;
436
437 length = jpeg_getc(cinfo) << 8;
438 length += jpeg_getc(cinfo);
DRCe5eaf372014-05-09 18:00:32 +0000439 length -= 2; /* discount the length word itself */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000440
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000441 if (traceit) {
442 if (cinfo->unread_marker == JPEG_COM)
443 fprintf(stderr, "Comment, length %ld:\n", (long) length);
DRCe5eaf372014-05-09 18:00:32 +0000444 else /* assume it is an APPn otherwise */
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000445 fprintf(stderr, "APP%d, length %ld:\n",
DRCe5eaf372014-05-09 18:00:32 +0000446 cinfo->unread_marker - JPEG_APP0, (long) length);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000447 }
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000448
449 while (--length >= 0) {
450 ch = jpeg_getc(cinfo);
451 if (traceit) {
452 /* Emit the character in a readable form.
453 * Nonprintables are converted to \nnn form,
454 * while \ is converted to \\.
455 * Newlines in CR, CR/LF, or LF form will be printed as one newline.
456 */
457 if (ch == '\r') {
DRCe5eaf372014-05-09 18:00:32 +0000458 fprintf(stderr, "\n");
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000459 } else if (ch == '\n') {
DRCe5eaf372014-05-09 18:00:32 +0000460 if (lastch != '\r')
461 fprintf(stderr, "\n");
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000462 } else if (ch == '\\') {
DRCe5eaf372014-05-09 18:00:32 +0000463 fprintf(stderr, "\\\\");
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000464 } else if (isprint(ch)) {
DRCe5eaf372014-05-09 18:00:32 +0000465 putc(ch, stderr);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000466 } else {
DRCe5eaf372014-05-09 18:00:32 +0000467 fprintf(stderr, "\\%03o", ch);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000468 }
469 lastch = ch;
470 }
471 }
472
473 if (traceit)
474 fprintf(stderr, "\n");
475
476 return TRUE;
477}
478
479
480/*
481 * The main program.
482 */
483
Thomas G. Lane489583f1996-02-07 00:00:00 +0000484int
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000485main (int argc, char **argv)
486{
487 struct jpeg_decompress_struct cinfo;
488 struct jpeg_error_mgr jerr;
489#ifdef PROGRESS_REPORT
490 struct cdjpeg_progress_mgr progress;
491#endif
492 int file_index;
493 djpeg_dest_ptr dest_mgr = NULL;
494 FILE * input_file;
495 FILE * output_file;
DRCab706232013-01-18 23:42:31 +0000496 unsigned char *inbuffer = NULL;
497 unsigned long insize = 0;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000498 JDIMENSION num_scanlines;
499
500 /* On Mac, fetch a command line. */
501#ifdef USE_CCOMMAND
502 argc = ccommand(&argv);
503#endif
504
505 progname = argv[0];
506 if (progname == NULL || progname[0] == 0)
DRCe5eaf372014-05-09 18:00:32 +0000507 progname = "djpeg"; /* in case C library doesn't provide it */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000508
509 /* Initialize the JPEG decompression object with default error handling. */
510 cinfo.err = jpeg_std_error(&jerr);
511 jpeg_create_decompress(&cinfo);
512 /* Add some application-specific error messages (from cderror.h) */
Thomas G. Lane9ba2f5e1994-12-07 00:00:00 +0000513 jerr.addon_message_table = cdjpeg_message_table;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000514 jerr.first_addon_message = JMSG_FIRSTADDONCODE;
515 jerr.last_addon_message = JMSG_LASTADDONCODE;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000516
517 /* Insert custom marker processor for COM and APP12.
518 * APP12 is used by some digital camera makers for textual info,
519 * so we provide the ability to display it as text.
520 * If you like, additional APPn marker types can be selected for display,
DRC39ea5622010-10-12 01:55:31 +0000521 * but don't try to override APP0 or APP14 this way (see libjpeg.txt).
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000522 */
523 jpeg_set_marker_processor(&cinfo, JPEG_COM, print_text_marker);
524 jpeg_set_marker_processor(&cinfo, JPEG_APP0+12, print_text_marker);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000525
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000526 /* Scan command line to find file names. */
527 /* It is convenient to use just one switch-parsing routine, but the switch
528 * values read here are ignored; we will rescan the switches after opening
529 * the input file.
530 * (Exception: tracing level set here controls verbosity for COM markers
531 * found during jpeg_read_header...)
532 */
533
534 file_index = parse_switches(&cinfo, argc, argv, 0, FALSE);
535
536#ifdef TWO_FILE_COMMANDLINE
537 /* Must have either -outfile switch or explicit output file name */
538 if (outfilename == NULL) {
539 if (file_index != argc-2) {
540 fprintf(stderr, "%s: must name one input and one output file\n",
DRCe5eaf372014-05-09 18:00:32 +0000541 progname);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000542 usage();
543 }
544 outfilename = argv[file_index+1];
545 } else {
546 if (file_index != argc-1) {
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 }
552#else
553 /* Unix style: expect zero or one file name */
554 if (file_index < argc-1) {
555 fprintf(stderr, "%s: only one input file\n", progname);
556 usage();
557 }
558#endif /* TWO_FILE_COMMANDLINE */
559
560 /* Open the input file. */
561 if (file_index < argc) {
562 if ((input_file = fopen(argv[file_index], READ_BINARY)) == NULL) {
563 fprintf(stderr, "%s: can't open %s\n", progname, argv[file_index]);
564 exit(EXIT_FAILURE);
565 }
566 } else {
567 /* default input file is stdin */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000568 input_file = read_stdin();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000569 }
570
571 /* Open the output file. */
572 if (outfilename != NULL) {
573 if ((output_file = fopen(outfilename, WRITE_BINARY)) == NULL) {
574 fprintf(stderr, "%s: can't open %s\n", progname, outfilename);
575 exit(EXIT_FAILURE);
576 }
577 } else {
578 /* default output file is stdout */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000579 output_file = write_stdout();
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000580 }
581
582#ifdef PROGRESS_REPORT
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000583 start_progress_monitor((j_common_ptr) &cinfo, &progress);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000584#endif
585
586 /* Specify data source for decompression */
DRCab706232013-01-18 23:42:31 +0000587#if JPEG_LIB_VERSION >= 80 || defined(MEM_SRCDST_SUPPORTED)
588 if (memsrc) {
589 size_t nbytes;
590 do {
591 inbuffer = (unsigned char *)realloc(inbuffer, insize + INPUT_BUF_SIZE);
592 if (inbuffer == NULL) {
593 fprintf(stderr, "%s: memory allocation failure\n", progname);
594 exit(EXIT_FAILURE);
595 }
596 nbytes = JFREAD(input_file, &inbuffer[insize], INPUT_BUF_SIZE);
DRCc45653e2013-10-12 21:52:48 +0000597 if (nbytes < INPUT_BUF_SIZE && ferror(input_file)) {
DRCab706232013-01-18 23:42:31 +0000598 if (file_index < argc)
599 fprintf(stderr, "%s: can't read from %s\n", progname,
600 argv[file_index]);
601 else
602 fprintf(stderr, "%s: can't read from stdin\n", progname);
603 }
DRC736fb062013-01-18 23:45:06 +0000604 insize += (unsigned long)nbytes;
DRCab706232013-01-18 23:42:31 +0000605 } while (nbytes == INPUT_BUF_SIZE);
606 fprintf(stderr, "Compressed size: %lu bytes\n", insize);
607 jpeg_mem_src(&cinfo, inbuffer, insize);
608 } else
609#endif
610 jpeg_stdio_src(&cinfo, input_file);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000611
612 /* Read file header, set default decompression parameters */
613 (void) jpeg_read_header(&cinfo, TRUE);
614
615 /* Adjust default decompression parameters by re-parsing the options */
616 file_index = parse_switches(&cinfo, argc, argv, 0, TRUE);
617
618 /* Initialize the output module now to let it override any crucial
619 * option settings (for instance, GIF wants to force color quantization).
620 */
621 switch (requested_fmt) {
622#ifdef BMP_SUPPORTED
623 case FMT_BMP:
624 dest_mgr = jinit_write_bmp(&cinfo, FALSE);
625 break;
626 case FMT_OS2:
627 dest_mgr = jinit_write_bmp(&cinfo, TRUE);
628 break;
629#endif
630#ifdef GIF_SUPPORTED
631 case FMT_GIF:
632 dest_mgr = jinit_write_gif(&cinfo);
633 break;
634#endif
635#ifdef PPM_SUPPORTED
636 case FMT_PPM:
637 dest_mgr = jinit_write_ppm(&cinfo);
638 break;
639#endif
640#ifdef RLE_SUPPORTED
641 case FMT_RLE:
642 dest_mgr = jinit_write_rle(&cinfo);
643 break;
644#endif
645#ifdef TARGA_SUPPORTED
646 case FMT_TARGA:
647 dest_mgr = jinit_write_targa(&cinfo);
648 break;
649#endif
650 default:
651 ERREXIT(&cinfo, JERR_UNSUPPORTED_FORMAT);
652 break;
653 }
654 dest_mgr->output_file = output_file;
655
656 /* Start decompressor */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000657 (void) jpeg_start_decompress(&cinfo);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000658
DRCac30a1b2015-06-25 03:44:36 +0000659 /* Stripe decode */
DRC15884f42015-06-25 03:44:37 +0000660 if (stripe || skip) {
DRCac30a1b2015-06-25 03:44:36 +0000661 JDIMENSION tmp;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000662
DRCac30a1b2015-06-25 03:44:36 +0000663 /* Check for valid endY. We cannot check this value until after
664 * jpeg_start_decompress() is called. Note that we have already verified
665 * that startY <= endY.
666 */
667 if (endY > cinfo.output_height) {
668 fprintf(stderr, "%s: stripe %d-%d exceeds image height %d\n", progname,
669 startY, endY, cinfo.output_height);
670 exit(EXIT_FAILURE);
671 }
672
673 /* Write output file header. This is a hack to ensure that the destination
674 * manager creates an image of the proper size for the partial decode.
675 */
676 tmp = cinfo.output_height;
677 cinfo.output_height = endY - startY;
DRC15884f42015-06-25 03:44:37 +0000678 if (skip)
679 cinfo.output_height = tmp - cinfo.output_height;
DRCac30a1b2015-06-25 03:44:36 +0000680 (*dest_mgr->start_output) (&cinfo, dest_mgr);
681 cinfo.output_height = tmp;
682
683 /* Process data */
DRC15884f42015-06-25 03:44:37 +0000684 if (skip) {
685 while (cinfo.output_scanline < startY) {
686 num_scanlines = jpeg_read_scanlines(&cinfo, dest_mgr->buffer,
687 dest_mgr->buffer_height);
688 (*dest_mgr->put_pixel_rows) (&cinfo, dest_mgr, num_scanlines);
689 }
690 jpeg_skip_scanlines(&cinfo, endY - startY);
691 while (cinfo.output_scanline < cinfo.output_height) {
692 num_scanlines = jpeg_read_scanlines(&cinfo, dest_mgr->buffer,
693 dest_mgr->buffer_height);
694 (*dest_mgr->put_pixel_rows) (&cinfo, dest_mgr, num_scanlines);
695 }
696 } else {
697 jpeg_skip_scanlines(&cinfo, startY);
698 while (cinfo.output_scanline < endY) {
699 num_scanlines = jpeg_read_scanlines(&cinfo, dest_mgr->buffer,
700 dest_mgr->buffer_height);
701 (*dest_mgr->put_pixel_rows) (&cinfo, dest_mgr, num_scanlines);
702 }
703 jpeg_skip_scanlines(&cinfo, cinfo.output_height - endY);
DRCac30a1b2015-06-25 03:44:36 +0000704 }
DRCac30a1b2015-06-25 03:44:36 +0000705
706 /* Normal full image decode */
707 } else {
708 /* Write output file header */
709 (*dest_mgr->start_output) (&cinfo, dest_mgr);
710
711 /* Process data */
712 while (cinfo.output_scanline < cinfo.output_height) {
713 num_scanlines = jpeg_read_scanlines(&cinfo, dest_mgr->buffer,
714 dest_mgr->buffer_height);
715 (*dest_mgr->put_pixel_rows) (&cinfo, dest_mgr, num_scanlines);
716 }
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000717 }
718
719#ifdef PROGRESS_REPORT
720 /* Hack: count final pass as done in case finish_output does an extra pass.
721 * The library won't have updated completed_passes.
722 */
723 progress.pub.completed_passes = progress.pub.total_passes;
724#endif
725
726 /* Finish decompression and release memory.
727 * I must do it in this order because output module has allocated memory
728 * of lifespan JPOOL_IMAGE; it needs to finish before releasing memory.
729 */
730 (*dest_mgr->finish_output) (&cinfo, dest_mgr);
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000731 (void) jpeg_finish_decompress(&cinfo);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000732 jpeg_destroy_decompress(&cinfo);
733
Thomas G. Lane9ba2f5e1994-12-07 00:00:00 +0000734 /* Close files, if we opened them */
735 if (input_file != stdin)
736 fclose(input_file);
737 if (output_file != stdout)
738 fclose(output_file);
739
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000740#ifdef PROGRESS_REPORT
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000741 end_progress_monitor((j_common_ptr) &cinfo);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000742#endif
743
DRCab706232013-01-18 23:42:31 +0000744 if (memsrc && inbuffer != NULL)
745 free(inbuffer);
746
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000747 /* All done. */
748 exit(jerr.num_warnings ? EXIT_WARNING : EXIT_SUCCESS);
DRCe5eaf372014-05-09 18:00:32 +0000749 return 0; /* suppress no-return-value warnings */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000750}