123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838 |
- #include "cdjpeg.h"
- #include "jversion.h"
- #include "jconfigint.h"
- #ifndef HAVE_STDLIB_H
- extern void free(void *ptr);
- #endif
- #include <ctype.h> /* to declare isprint() */
- #ifdef USE_CCOMMAND
- #ifdef __MWERKS__
- #include <SIOUX.h> /* Metrowerks needs this */
- #include <console.h> /* ... and this */
- #endif
- #ifdef THINK_C
- #include <console.h> /* Think declares it here */
- #endif
- #endif
- #define JMESSAGE(code, string) string,
- static const char * const cdjpeg_message_table[] = {
- #include "cderror.h"
- NULL
- };
- typedef enum {
- FMT_BMP,
- FMT_GIF,
- FMT_OS2,
- FMT_PPM,
- FMT_RLE,
- FMT_TARGA,
- FMT_TIFF
- } IMAGE_FORMATS;
- #ifndef DEFAULT_FMT
- #define DEFAULT_FMT FMT_PPM
- #endif
- static IMAGE_FORMATS requested_fmt;
- static const char *progname;
- static char *icc_filename;
- static char *outfilename;
- boolean memsrc;
- boolean skip, crop;
- JDIMENSION skip_start, skip_end;
- JDIMENSION crop_x, crop_y, crop_width, crop_height;
- #define INPUT_BUF_SIZE 4096
- LOCAL(void)
- usage(void)
- {
- fprintf(stderr, "usage: %s [switches] ", progname);
- #ifdef TWO_FILE_COMMANDLINE
- fprintf(stderr, "inputfile outputfile\n");
- #else
- fprintf(stderr, "[inputfile]\n");
- #endif
- fprintf(stderr, "Switches (names may be abbreviated):\n");
- fprintf(stderr, " -colors N Reduce image to no more than N colors\n");
- fprintf(stderr, " -fast Fast, low-quality processing\n");
- fprintf(stderr, " -grayscale Force grayscale output\n");
- fprintf(stderr, " -rgb Force RGB output\n");
- fprintf(stderr, " -rgb565 Force RGB565 output\n");
- #ifdef IDCT_SCALING_SUPPORTED
- fprintf(stderr, " -scale M/N Scale output image by fraction M/N, eg, 1/8\n");
- #endif
- #ifdef BMP_SUPPORTED
- fprintf(stderr, " -bmp Select BMP output format (Windows style)%s\n",
- (DEFAULT_FMT == FMT_BMP ? " (default)" : ""));
- #endif
- #ifdef GIF_SUPPORTED
- fprintf(stderr, " -gif Select GIF output format%s\n",
- (DEFAULT_FMT == FMT_GIF ? " (default)" : ""));
- #endif
- #ifdef BMP_SUPPORTED
- fprintf(stderr, " -os2 Select BMP output format (OS/2 style)%s\n",
- (DEFAULT_FMT == FMT_OS2 ? " (default)" : ""));
- #endif
- #ifdef PPM_SUPPORTED
- fprintf(stderr, " -pnm Select PBMPLUS (PPM/PGM) output format%s\n",
- (DEFAULT_FMT == FMT_PPM ? " (default)" : ""));
- #endif
- #ifdef RLE_SUPPORTED
- fprintf(stderr, " -rle Select Utah RLE output format%s\n",
- (DEFAULT_FMT == FMT_RLE ? " (default)" : ""));
- #endif
- #ifdef TARGA_SUPPORTED
- fprintf(stderr, " -targa Select Targa output format%s\n",
- (DEFAULT_FMT == FMT_TARGA ? " (default)" : ""));
- #endif
- fprintf(stderr, "Switches for advanced users:\n");
- #ifdef DCT_ISLOW_SUPPORTED
- fprintf(stderr, " -dct int Use integer DCT method%s\n",
- (JDCT_DEFAULT == JDCT_ISLOW ? " (default)" : ""));
- #endif
- #ifdef DCT_IFAST_SUPPORTED
- fprintf(stderr, " -dct fast Use fast integer DCT (less accurate)%s\n",
- (JDCT_DEFAULT == JDCT_IFAST ? " (default)" : ""));
- #endif
- #ifdef DCT_FLOAT_SUPPORTED
- fprintf(stderr, " -dct float Use floating-point DCT method%s\n",
- (JDCT_DEFAULT == JDCT_FLOAT ? " (default)" : ""));
- #endif
- fprintf(stderr, " -dither fs Use F-S dithering (default)\n");
- fprintf(stderr, " -dither none Don't use dithering in quantization\n");
- fprintf(stderr, " -dither ordered Use ordered dither (medium speed, quality)\n");
- fprintf(stderr, " -icc FILE Extract ICC profile to FILE\n");
- #ifdef QUANT_2PASS_SUPPORTED
- fprintf(stderr, " -map FILE Map to colors used in named image file\n");
- #endif
- fprintf(stderr, " -nosmooth Don't use high-quality upsampling\n");
- #ifdef QUANT_1PASS_SUPPORTED
- fprintf(stderr, " -onepass Use 1-pass quantization (fast, low quality)\n");
- #endif
- fprintf(stderr, " -maxmemory N Maximum memory to use (in kbytes)\n");
- fprintf(stderr, " -outfile name Specify name for output file\n");
- #if JPEG_LIB_VERSION >= 80 || defined(MEM_SRCDST_SUPPORTED)
- fprintf(stderr, " -memsrc Load input file into memory before decompressing\n");
- #endif
- fprintf(stderr, " -skip Y0,Y1 Decompress all rows except those between Y0 and Y1 (inclusive)\n");
- fprintf(stderr, " -crop WxH+X+Y Decompress only a rectangular subregion of the image\n");
- fprintf(stderr, " [requires PBMPLUS (PPM/PGM), GIF, or Targa output format]\n");
- fprintf(stderr, " -verbose or -debug Emit debug output\n");
- fprintf(stderr, " -version Print version information and exit\n");
- exit(EXIT_FAILURE);
- }
- LOCAL(int)
- parse_switches(j_decompress_ptr cinfo, int argc, char **argv,
- int last_file_arg_seen, boolean for_real)
- {
- int argn;
- char *arg;
-
- requested_fmt = DEFAULT_FMT;
- icc_filename = NULL;
- outfilename = NULL;
- memsrc = FALSE;
- skip = FALSE;
- crop = FALSE;
- cinfo->err->trace_level = 0;
-
- for (argn = 1; argn < argc; argn++) {
- arg = argv[argn];
- if (*arg != '-') {
-
- if (argn <= last_file_arg_seen) {
- outfilename = NULL;
- continue;
- }
- break;
- }
- arg++;
- if (keymatch(arg, "bmp", 1)) {
-
- requested_fmt = FMT_BMP;
- } else if (keymatch(arg, "colors", 1) || keymatch(arg, "colours", 1) ||
- keymatch(arg, "quantize", 1) || keymatch(arg, "quantise", 1)) {
-
- int val;
- if (++argn >= argc)
- usage();
- if (sscanf(argv[argn], "%d", &val) != 1)
- usage();
- cinfo->desired_number_of_colors = val;
- cinfo->quantize_colors = TRUE;
- } else if (keymatch(arg, "dct", 2)) {
-
- if (++argn >= argc)
- usage();
- if (keymatch(argv[argn], "int", 1)) {
- cinfo->dct_method = JDCT_ISLOW;
- } else if (keymatch(argv[argn], "fast", 2)) {
- cinfo->dct_method = JDCT_IFAST;
- } else if (keymatch(argv[argn], "float", 2)) {
- cinfo->dct_method = JDCT_FLOAT;
- } else
- usage();
- } else if (keymatch(arg, "dither", 2)) {
-
- if (++argn >= argc)
- usage();
- if (keymatch(argv[argn], "fs", 2)) {
- cinfo->dither_mode = JDITHER_FS;
- } else if (keymatch(argv[argn], "none", 2)) {
- cinfo->dither_mode = JDITHER_NONE;
- } else if (keymatch(argv[argn], "ordered", 2)) {
- cinfo->dither_mode = JDITHER_ORDERED;
- } else
- usage();
- } else if (keymatch(arg, "debug", 1) || keymatch(arg, "verbose", 1)) {
-
-
- static boolean printed_version = FALSE;
- if (!printed_version) {
- fprintf(stderr, "%s version %s (build %s)\n",
- PACKAGE_NAME, VERSION, BUILD);
- fprintf(stderr, "%s\n\n", JCOPYRIGHT);
- fprintf(stderr, "Emulating The Independent JPEG Group's software, version %s\n\n",
- JVERSION);
- printed_version = TRUE;
- }
- cinfo->err->trace_level++;
- } else if (keymatch(arg, "version", 4)) {
- fprintf(stderr, "%s version %s (build %s)\n",
- PACKAGE_NAME, VERSION, BUILD);
- exit(EXIT_SUCCESS);
- } else if (keymatch(arg, "fast", 1)) {
-
- cinfo->two_pass_quantize = FALSE;
- cinfo->dither_mode = JDITHER_ORDERED;
- if (!cinfo->quantize_colors)
- cinfo->desired_number_of_colors = 216;
- cinfo->dct_method = JDCT_FASTEST;
- cinfo->do_fancy_upsampling = FALSE;
- } else if (keymatch(arg, "gif", 1)) {
-
- requested_fmt = FMT_GIF;
- } else if (keymatch(arg, "grayscale", 2) ||
- keymatch(arg, "greyscale", 2)) {
-
- cinfo->out_color_space = JCS_GRAYSCALE;
- } else if (keymatch(arg, "rgb", 2)) {
-
- cinfo->out_color_space = JCS_RGB;
- } else if (keymatch(arg, "rgb565", 2)) {
-
- cinfo->out_color_space = JCS_RGB565;
- } else if (keymatch(arg, "icc", 1)) {
-
- if (++argn >= argc)
- usage();
- icc_filename = argv[argn];
- jpeg_save_markers(cinfo, JPEG_APP0 + 2, 0xFFFF);
- } else if (keymatch(arg, "map", 3)) {
-
- if (++argn >= argc)
- usage();
- if (for_real) {
- #ifdef QUANT_2PASS_SUPPORTED
- FILE *mapfile;
- if ((mapfile = fopen(argv[argn], READ_BINARY)) == NULL) {
- fprintf(stderr, "%s: can't open %s\n", progname, argv[argn]);
- exit(EXIT_FAILURE);
- }
- read_color_map(cinfo, mapfile);
- fclose(mapfile);
- cinfo->quantize_colors = TRUE;
- #else
- ERREXIT(cinfo, JERR_NOT_COMPILED);
- #endif
- }
- } else if (keymatch(arg, "maxmemory", 3)) {
-
- long lval;
- char ch = 'x';
- if (++argn >= argc)
- usage();
- if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1)
- usage();
- if (ch == 'm' || ch == 'M')
- lval *= 1000L;
- cinfo->mem->max_memory_to_use = lval * 1000L;
- } else if (keymatch(arg, "nosmooth", 3)) {
-
- cinfo->do_fancy_upsampling = FALSE;
- } else if (keymatch(arg, "onepass", 3)) {
-
- cinfo->two_pass_quantize = FALSE;
- } else if (keymatch(arg, "os2", 3)) {
-
- requested_fmt = FMT_OS2;
- } else if (keymatch(arg, "outfile", 4)) {
-
- if (++argn >= argc)
- usage();
- outfilename = argv[argn];
- } else if (keymatch(arg, "memsrc", 2)) {
-
- #if JPEG_LIB_VERSION >= 80 || defined(MEM_SRCDST_SUPPORTED)
- memsrc = TRUE;
- #else
- fprintf(stderr, "%s: sorry, in-memory source manager was not compiled in\n",
- progname);
- exit(EXIT_FAILURE);
- #endif
- } else if (keymatch(arg, "pnm", 1) || keymatch(arg, "ppm", 1)) {
-
- requested_fmt = FMT_PPM;
- } else if (keymatch(arg, "rle", 1)) {
-
- requested_fmt = FMT_RLE;
- } else if (keymatch(arg, "scale", 2)) {
-
- if (++argn >= argc)
- usage();
- if (sscanf(argv[argn], "%u/%u",
- &cinfo->scale_num, &cinfo->scale_denom) != 2)
- usage();
- } else if (keymatch(arg, "skip", 2)) {
- if (++argn >= argc)
- usage();
- if (sscanf(argv[argn], "%u,%u", &skip_start, &skip_end) != 2 ||
- skip_start > skip_end)
- usage();
- skip = TRUE;
- } else if (keymatch(arg, "crop", 2)) {
- char c;
- if (++argn >= argc)
- usage();
- if (sscanf(argv[argn], "%u%c%u+%u+%u", &crop_width, &c, &crop_height,
- &crop_x, &crop_y) != 5 ||
- (c != 'X' && c != 'x') || crop_width < 1 || crop_height < 1)
- usage();
- crop = TRUE;
- } else if (keymatch(arg, "targa", 1)) {
-
- requested_fmt = FMT_TARGA;
- } else {
- usage();
- }
- }
- return argn;
- }
- LOCAL(unsigned int)
- jpeg_getc(j_decompress_ptr cinfo)
- {
- struct jpeg_source_mgr *datasrc = cinfo->src;
- if (datasrc->bytes_in_buffer == 0) {
- if (!(*datasrc->fill_input_buffer) (cinfo))
- ERREXIT(cinfo, JERR_CANT_SUSPEND);
- }
- datasrc->bytes_in_buffer--;
- return GETJOCTET(*datasrc->next_input_byte++);
- }
- METHODDEF(boolean)
- print_text_marker(j_decompress_ptr cinfo)
- {
- boolean traceit = (cinfo->err->trace_level >= 1);
- long length;
- unsigned int ch;
- unsigned int lastch = 0;
- length = jpeg_getc(cinfo) << 8;
- length += jpeg_getc(cinfo);
- length -= 2;
- if (traceit) {
- if (cinfo->unread_marker == JPEG_COM)
- fprintf(stderr, "Comment, length %ld:\n", (long)length);
- else
- fprintf(stderr, "APP%d, length %ld:\n",
- cinfo->unread_marker - JPEG_APP0, (long)length);
- }
- while (--length >= 0) {
- ch = jpeg_getc(cinfo);
- if (traceit) {
-
- if (ch == '\r') {
- fprintf(stderr, "\n");
- } else if (ch == '\n') {
- if (lastch != '\r')
- fprintf(stderr, "\n");
- } else if (ch == '\\') {
- fprintf(stderr, "\\\\");
- } else if (isprint(ch)) {
- putc(ch, stderr);
- } else {
- fprintf(stderr, "\\%03o", ch);
- }
- lastch = ch;
- }
- }
- if (traceit)
- fprintf(stderr, "\n");
- return TRUE;
- }
- int
- main(int argc, char **argv)
- {
- struct jpeg_decompress_struct cinfo;
- struct jpeg_error_mgr jerr;
- #ifdef PROGRESS_REPORT
- struct cdjpeg_progress_mgr progress;
- #endif
- int file_index;
- djpeg_dest_ptr dest_mgr = NULL;
- FILE *input_file;
- FILE *output_file;
- unsigned char *inbuffer = NULL;
- #if JPEG_LIB_VERSION >= 80 || defined(MEM_SRCDST_SUPPORTED)
- unsigned long insize = 0;
- #endif
- JDIMENSION num_scanlines;
-
- #ifdef USE_CCOMMAND
- argc = ccommand(&argv);
- #endif
- progname = argv[0];
- if (progname == NULL || progname[0] == 0)
- progname = "djpeg";
-
- cinfo.err = jpeg_std_error(&jerr);
- jpeg_create_decompress(&cinfo);
-
- jerr.addon_message_table = cdjpeg_message_table;
- jerr.first_addon_message = JMSG_FIRSTADDONCODE;
- jerr.last_addon_message = JMSG_LASTADDONCODE;
-
- jpeg_set_marker_processor(&cinfo, JPEG_COM, print_text_marker);
- jpeg_set_marker_processor(&cinfo, JPEG_APP0 + 12, print_text_marker);
-
-
- file_index = parse_switches(&cinfo, argc, argv, 0, FALSE);
- #ifdef TWO_FILE_COMMANDLINE
-
- if (outfilename == NULL) {
- if (file_index != argc - 2) {
- fprintf(stderr, "%s: must name one input and one output file\n",
- progname);
- usage();
- }
- outfilename = argv[file_index + 1];
- } else {
- if (file_index != argc - 1) {
- fprintf(stderr, "%s: must name one input and one output file\n",
- progname);
- usage();
- }
- }
- #else
-
- if (file_index < argc - 1) {
- fprintf(stderr, "%s: only one input file\n", progname);
- usage();
- }
- #endif
-
- if (file_index < argc) {
- if ((input_file = fopen(argv[file_index], READ_BINARY)) == NULL) {
- fprintf(stderr, "%s: can't open %s\n", progname, argv[file_index]);
- exit(EXIT_FAILURE);
- }
- } else {
-
- input_file = read_stdin();
- }
-
- if (outfilename != NULL) {
- if ((output_file = fopen(outfilename, WRITE_BINARY)) == NULL) {
- fprintf(stderr, "%s: can't open %s\n", progname, outfilename);
- exit(EXIT_FAILURE);
- }
- } else {
-
- output_file = write_stdout();
- }
- #ifdef PROGRESS_REPORT
- start_progress_monitor((j_common_ptr)&cinfo, &progress);
- #endif
-
- #if JPEG_LIB_VERSION >= 80 || defined(MEM_SRCDST_SUPPORTED)
- if (memsrc) {
- size_t nbytes;
- do {
- inbuffer = (unsigned char *)realloc(inbuffer, insize + INPUT_BUF_SIZE);
- if (inbuffer == NULL) {
- fprintf(stderr, "%s: memory allocation failure\n", progname);
- exit(EXIT_FAILURE);
- }
- nbytes = JFREAD(input_file, &inbuffer[insize], INPUT_BUF_SIZE);
- if (nbytes < INPUT_BUF_SIZE && ferror(input_file)) {
- if (file_index < argc)
- fprintf(stderr, "%s: can't read from %s\n", progname,
- argv[file_index]);
- else
- fprintf(stderr, "%s: can't read from stdin\n", progname);
- }
- insize += (unsigned long)nbytes;
- } while (nbytes == INPUT_BUF_SIZE);
- fprintf(stderr, "Compressed size: %lu bytes\n", insize);
- jpeg_mem_src(&cinfo, inbuffer, insize);
- } else
- #endif
- jpeg_stdio_src(&cinfo, input_file);
-
- (void)jpeg_read_header(&cinfo, TRUE);
-
- file_index = parse_switches(&cinfo, argc, argv, 0, TRUE);
-
- switch (requested_fmt) {
- #ifdef BMP_SUPPORTED
- case FMT_BMP:
- dest_mgr = jinit_write_bmp(&cinfo, FALSE, TRUE);
- break;
- case FMT_OS2:
- dest_mgr = jinit_write_bmp(&cinfo, TRUE, TRUE);
- break;
- #endif
- #ifdef GIF_SUPPORTED
- case FMT_GIF:
- dest_mgr = jinit_write_gif(&cinfo);
- break;
- #endif
- #ifdef PPM_SUPPORTED
- case FMT_PPM:
- dest_mgr = jinit_write_ppm(&cinfo);
- break;
- #endif
- #ifdef RLE_SUPPORTED
- case FMT_RLE:
- dest_mgr = jinit_write_rle(&cinfo);
- break;
- #endif
- #ifdef TARGA_SUPPORTED
- case FMT_TARGA:
- dest_mgr = jinit_write_targa(&cinfo);
- break;
- #endif
- default:
- ERREXIT(&cinfo, JERR_UNSUPPORTED_FORMAT);
- break;
- }
- dest_mgr->output_file = output_file;
-
- (void)jpeg_start_decompress(&cinfo);
-
- if (skip) {
- JDIMENSION tmp;
-
- if (skip_end > cinfo.output_height - 1) {
- fprintf(stderr, "%s: skip region exceeds image height %d\n", progname,
- cinfo.output_height);
- exit(EXIT_FAILURE);
- }
-
- tmp = cinfo.output_height;
- cinfo.output_height -= (skip_end - skip_start + 1);
- (*dest_mgr->start_output) (&cinfo, dest_mgr);
- cinfo.output_height = tmp;
-
- while (cinfo.output_scanline < skip_start) {
- num_scanlines = jpeg_read_scanlines(&cinfo, dest_mgr->buffer,
- dest_mgr->buffer_height);
- (*dest_mgr->put_pixel_rows) (&cinfo, dest_mgr, num_scanlines);
- }
- if ((tmp = jpeg_skip_scanlines(&cinfo, skip_end - skip_start + 1)) !=
- skip_end - skip_start + 1) {
- fprintf(stderr, "%s: jpeg_skip_scanlines() returned %d rather than %d\n",
- progname, tmp, skip_end - skip_start + 1);
- exit(EXIT_FAILURE);
- }
- while (cinfo.output_scanline < cinfo.output_height) {
- num_scanlines = jpeg_read_scanlines(&cinfo, dest_mgr->buffer,
- dest_mgr->buffer_height);
- (*dest_mgr->put_pixel_rows) (&cinfo, dest_mgr, num_scanlines);
- }
-
- } else if (crop) {
- JDIMENSION tmp;
-
- if (crop_x + crop_width > cinfo.output_width ||
- crop_y + crop_height > cinfo.output_height) {
- fprintf(stderr, "%s: crop dimensions exceed image dimensions %d x %d\n",
- progname, cinfo.output_width, cinfo.output_height);
- exit(EXIT_FAILURE);
- }
- jpeg_crop_scanline(&cinfo, &crop_x, &crop_width);
- if (dest_mgr->calc_buffer_dimensions)
- (*dest_mgr->calc_buffer_dimensions) (&cinfo, dest_mgr);
- else
- ERREXIT(&cinfo, JERR_UNSUPPORTED_FORMAT);
-
- tmp = cinfo.output_height;
- cinfo.output_height = crop_height;
- (*dest_mgr->start_output) (&cinfo, dest_mgr);
- cinfo.output_height = tmp;
-
- if ((tmp = jpeg_skip_scanlines(&cinfo, crop_y)) != crop_y) {
- fprintf(stderr, "%s: jpeg_skip_scanlines() returned %d rather than %d\n",
- progname, tmp, crop_y);
- exit(EXIT_FAILURE);
- }
- while (cinfo.output_scanline < crop_y + crop_height) {
- num_scanlines = jpeg_read_scanlines(&cinfo, dest_mgr->buffer,
- dest_mgr->buffer_height);
- (*dest_mgr->put_pixel_rows) (&cinfo, dest_mgr, num_scanlines);
- }
- if ((tmp =
- jpeg_skip_scanlines(&cinfo,
- cinfo.output_height - crop_y - crop_height)) !=
- cinfo.output_height - crop_y - crop_height) {
- fprintf(stderr, "%s: jpeg_skip_scanlines() returned %d rather than %d\n",
- progname, tmp, cinfo.output_height - crop_y - crop_height);
- exit(EXIT_FAILURE);
- }
-
- } else {
-
- (*dest_mgr->start_output) (&cinfo, dest_mgr);
-
- while (cinfo.output_scanline < cinfo.output_height) {
- num_scanlines = jpeg_read_scanlines(&cinfo, dest_mgr->buffer,
- dest_mgr->buffer_height);
- (*dest_mgr->put_pixel_rows) (&cinfo, dest_mgr, num_scanlines);
- }
- }
- #ifdef PROGRESS_REPORT
-
- progress.pub.completed_passes = progress.pub.total_passes;
- #endif
- if (icc_filename != NULL) {
- FILE *icc_file;
- JOCTET *icc_profile;
- unsigned int icc_len;
- if ((icc_file = fopen(icc_filename, WRITE_BINARY)) == NULL) {
- fprintf(stderr, "%s: can't open %s\n", progname, icc_filename);
- exit(EXIT_FAILURE);
- }
- if (jpeg_read_icc_profile(&cinfo, &icc_profile, &icc_len)) {
- if (fwrite(icc_profile, icc_len, 1, icc_file) < 1) {
- fprintf(stderr, "%s: can't read ICC profile from %s\n", progname,
- icc_filename);
- free(icc_profile);
- fclose(icc_file);
- exit(EXIT_FAILURE);
- }
- free(icc_profile);
- fclose(icc_file);
- } else if (cinfo.err->msg_code != JWRN_BOGUS_ICC)
- fprintf(stderr, "%s: no ICC profile data in JPEG file\n", progname);
- }
-
- (*dest_mgr->finish_output) (&cinfo, dest_mgr);
- (void)jpeg_finish_decompress(&cinfo);
- jpeg_destroy_decompress(&cinfo);
-
- if (input_file != stdin)
- fclose(input_file);
- if (output_file != stdout)
- fclose(output_file);
- #ifdef PROGRESS_REPORT
- end_progress_monitor((j_common_ptr)&cinfo);
- #endif
- if (memsrc)
- free(inbuffer);
-
- exit(jerr.num_warnings ? EXIT_WARNING : EXIT_SUCCESS);
- return 0;
- }
|