nuclear@2: /* nuclear@2: libimago - a multi-format image file input/output library. nuclear@2: Copyright (C) 2010 John Tsiombikas nuclear@2: nuclear@2: This program is free software: you can redistribute it and/or modify nuclear@2: it under the terms of the GNU Lesser General Public License as published nuclear@2: by the Free Software Foundation, either version 3 of the License, or nuclear@2: (at your option) any later version. nuclear@2: nuclear@2: This program is distributed in the hope that it will be useful, nuclear@2: but WITHOUT ANY WARRANTY; without even the implied warranty of nuclear@2: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the nuclear@2: GNU Lesser General Public License for more details. nuclear@2: nuclear@2: You should have received a copy of the GNU Lesser General Public License nuclear@2: along with this program. If not, see . nuclear@2: */ nuclear@2: nuclear@2: /* -- JPEG module -- */ nuclear@2: nuclear@2: #include nuclear@2: #include nuclear@2: #include nuclear@2: nuclear@2: #ifdef WIN32 nuclear@2: #include nuclear@2: #define HAVE_BOOLEAN nuclear@2: #endif nuclear@2: nuclear@2: #include nuclear@2: #include "imago2.h" nuclear@2: #include "ftype_module.h" nuclear@2: nuclear@2: #define INPUT_BUF_SIZE 512 nuclear@2: #define OUTPUT_BUF_SIZE 512 nuclear@2: nuclear@2: /* data source manager: adapted from jdatasrc.c */ nuclear@2: struct src_mgr { nuclear@2: struct jpeg_source_mgr pub; nuclear@2: nuclear@2: struct img_io *io; nuclear@2: unsigned char buffer[INPUT_BUF_SIZE]; nuclear@2: int start_of_file; nuclear@2: }; nuclear@2: nuclear@2: /* data destination manager: adapted from jdatadst.c */ nuclear@2: struct dst_mgr { nuclear@2: struct jpeg_destination_mgr pub; nuclear@2: nuclear@2: struct img_io *io; nuclear@2: unsigned char buffer[OUTPUT_BUF_SIZE]; nuclear@2: }; nuclear@2: nuclear@2: static int check(struct img_io *io); nuclear@2: static int readjpeg(struct img_pixmap *img, struct img_io *io); nuclear@2: static int writejpeg(struct img_pixmap *img, struct img_io *io); nuclear@2: nuclear@2: /* read source functions */ nuclear@2: static void init_source(j_decompress_ptr jd); nuclear@2: static int fill_input_buffer(j_decompress_ptr jd); nuclear@2: static void skip_input_data(j_decompress_ptr jd, long num_bytes); nuclear@2: static void term_source(j_decompress_ptr jd); nuclear@2: nuclear@2: /* write destination functions */ nuclear@2: static void init_destination(j_compress_ptr jc); nuclear@2: static int empty_output_buffer(j_compress_ptr jc); nuclear@2: static void term_destination(j_compress_ptr jc); nuclear@2: nuclear@2: int img_register_jpeg(void) nuclear@2: { nuclear@2: static struct ftype_module mod = {".jpg", check, readjpeg, writejpeg}; nuclear@2: return img_register_module(&mod); nuclear@2: } nuclear@2: nuclear@2: nuclear@2: static int check(struct img_io *io) nuclear@2: { nuclear@2: unsigned char sig[10]; nuclear@2: nuclear@2: long pos = io->seek(0, SEEK_CUR, io->uptr); nuclear@2: nuclear@2: if(io->read(sig, 10, io->uptr) < 10) { nuclear@2: io->seek(pos, SEEK_SET, io->uptr); nuclear@2: return -1; nuclear@2: } nuclear@2: nuclear@2: if(memcmp(sig, "\xff\xd8\xff\xe0", 4) != 0 || memcmp(sig + 6, "JFIF", 4) != 0) { nuclear@2: io->seek(pos, SEEK_SET, io->uptr); nuclear@2: return -1; nuclear@2: } nuclear@2: io->seek(pos, SEEK_SET, io->uptr); nuclear@2: return 0; nuclear@2: } nuclear@2: nuclear@2: static int readjpeg(struct img_pixmap *img, struct img_io *io) nuclear@2: { nuclear@2: int i, nlines = 0; nuclear@2: struct jpeg_decompress_struct cinfo; nuclear@2: struct jpeg_error_mgr jerr; nuclear@2: struct src_mgr src; nuclear@2: unsigned char **scanlines; nuclear@2: nuclear@2: cinfo.err = jpeg_std_error(&jerr); /* XXX change... */ nuclear@2: jpeg_create_decompress(&cinfo); nuclear@2: nuclear@2: src.pub.init_source = init_source; nuclear@2: src.pub.fill_input_buffer = fill_input_buffer; nuclear@2: src.pub.skip_input_data = skip_input_data; nuclear@2: src.pub.resync_to_restart = jpeg_resync_to_restart; nuclear@2: src.pub.term_source = term_source; nuclear@2: src.pub.next_input_byte = 0; nuclear@2: src.pub.bytes_in_buffer = 0; nuclear@2: src.io = io; nuclear@2: cinfo.src = (struct jpeg_source_mgr*)&src; nuclear@2: nuclear@2: jpeg_read_header(&cinfo, 1); nuclear@2: cinfo.out_color_space = JCS_RGB; nuclear@2: nuclear@2: if(img_set_pixels(img, cinfo.image_width, cinfo.image_height, IMG_FMT_RGB24, 0) == -1) { nuclear@2: jpeg_destroy_decompress(&cinfo); nuclear@2: return -1; nuclear@2: } nuclear@2: nuclear@2: if(!(scanlines = malloc(img->height * sizeof *scanlines))) { nuclear@2: jpeg_destroy_decompress(&cinfo); nuclear@2: return -1; nuclear@2: } nuclear@2: scanlines[0] = img->pixels; nuclear@2: for(i=1; iheight; i++) { nuclear@2: scanlines[i] = scanlines[i - 1] + img->width * img->pixelsz; nuclear@2: } nuclear@2: nuclear@2: jpeg_start_decompress(&cinfo); nuclear@2: while(nlines < img->height) { nuclear@2: int res = jpeg_read_scanlines(&cinfo, scanlines + nlines, img->height - nlines); nuclear@2: nlines += res; nuclear@2: } nuclear@2: jpeg_finish_decompress(&cinfo); nuclear@2: jpeg_destroy_decompress(&cinfo); nuclear@2: nuclear@2: free(scanlines); nuclear@2: return 0; nuclear@2: } nuclear@2: nuclear@2: static int writejpeg(struct img_pixmap *img, struct img_io *io) nuclear@2: { nuclear@2: int i, nlines = 0; nuclear@2: struct jpeg_compress_struct cinfo; nuclear@2: struct jpeg_error_mgr jerr; nuclear@2: struct dst_mgr dest; nuclear@2: struct img_pixmap tmpimg; nuclear@2: unsigned char **scanlines; nuclear@2: nuclear@2: img_init(&tmpimg); nuclear@2: nuclear@2: if(img->fmt != IMG_FMT_RGB24) { nuclear@2: if(img_copy(&tmpimg, img) == -1) { nuclear@2: return -1; nuclear@2: } nuclear@2: if(img_convert(&tmpimg, IMG_FMT_RGB24) == -1) { nuclear@2: img_destroy(&tmpimg); nuclear@2: return -1; nuclear@2: } nuclear@2: img = &tmpimg; nuclear@2: } nuclear@2: nuclear@2: if(!(scanlines = malloc(img->height * sizeof *scanlines))) { nuclear@2: img_destroy(&tmpimg); nuclear@2: return -1; nuclear@2: } nuclear@2: scanlines[0] = img->pixels; nuclear@2: for(i=1; iheight; i++) { nuclear@2: scanlines[i] = scanlines[i - 1] + img->width * img->pixelsz; nuclear@2: } nuclear@2: nuclear@2: cinfo.err = jpeg_std_error(&jerr); /* XXX */ nuclear@2: jpeg_create_compress(&cinfo); nuclear@2: nuclear@2: dest.pub.init_destination = init_destination; nuclear@2: dest.pub.empty_output_buffer = empty_output_buffer; nuclear@2: dest.pub.term_destination = term_destination; nuclear@2: dest.io = io; nuclear@2: cinfo.dest = (struct jpeg_destination_mgr*)&dest; nuclear@2: nuclear@2: cinfo.image_width = img->width; nuclear@2: cinfo.image_height = img->height; nuclear@2: cinfo.input_components = 3; nuclear@2: cinfo.in_color_space = JCS_RGB; nuclear@2: nuclear@2: jpeg_set_defaults(&cinfo); nuclear@2: nuclear@2: jpeg_start_compress(&cinfo, 1); nuclear@2: while(nlines < img->height) { nuclear@2: int res = jpeg_write_scanlines(&cinfo, scanlines + nlines, img->height - nlines); nuclear@2: nlines += res; nuclear@2: } nuclear@2: jpeg_finish_compress(&cinfo); nuclear@2: jpeg_destroy_compress(&cinfo); nuclear@2: nuclear@2: free(scanlines); nuclear@2: img_destroy(&tmpimg); nuclear@2: return 0; nuclear@2: } nuclear@2: nuclear@2: /* -- read source functions -- nuclear@2: * the following functions are adapted from jdatasrc.c in jpeglib nuclear@2: */ nuclear@2: static void init_source(j_decompress_ptr jd) nuclear@2: { nuclear@2: struct src_mgr *src = (struct src_mgr*)jd->src; nuclear@2: src->start_of_file = 1; nuclear@2: } nuclear@2: nuclear@2: static int fill_input_buffer(j_decompress_ptr jd) nuclear@2: { nuclear@2: struct src_mgr *src = (struct src_mgr*)jd->src; nuclear@2: size_t nbytes; nuclear@2: nuclear@2: nbytes = src->io->read(src->buffer, INPUT_BUF_SIZE, src->io->uptr); nuclear@2: nuclear@2: if(nbytes <= 0) { nuclear@2: if(src->start_of_file) { nuclear@2: return 0; nuclear@2: } nuclear@2: /* insert a fake EOI marker */ nuclear@2: src->buffer[0] = 0xff; nuclear@2: src->buffer[1] = JPEG_EOI; nuclear@2: nbytes = 2; nuclear@2: } nuclear@2: nuclear@2: src->pub.next_input_byte = src->buffer; nuclear@2: src->pub.bytes_in_buffer = nbytes; nuclear@2: src->start_of_file = 0; nuclear@2: return 1; nuclear@2: } nuclear@2: nuclear@2: static void skip_input_data(j_decompress_ptr jd, long num_bytes) nuclear@2: { nuclear@2: struct src_mgr *src = (struct src_mgr*)jd->src; nuclear@2: nuclear@2: if(num_bytes > 0) { nuclear@2: while(num_bytes > (long)src->pub.bytes_in_buffer) { nuclear@2: num_bytes -= (long)src->pub.bytes_in_buffer; nuclear@2: fill_input_buffer(jd); nuclear@2: } nuclear@2: src->pub.next_input_byte += (size_t)num_bytes; nuclear@2: src->pub.bytes_in_buffer -= (size_t)num_bytes; nuclear@2: } nuclear@2: } nuclear@2: nuclear@2: static void term_source(j_decompress_ptr jd) nuclear@2: { nuclear@2: /* nothing to see here, move along */ nuclear@2: } nuclear@2: nuclear@2: nuclear@2: /* -- write destination functions -- nuclear@2: * the following functions are adapted from jdatadst.c in jpeglib nuclear@2: */ nuclear@2: static void init_destination(j_compress_ptr jc) nuclear@2: { nuclear@2: struct dst_mgr *dest = (struct dst_mgr*)jc->dest; nuclear@2: nuclear@2: dest->pub.next_output_byte = dest->buffer; nuclear@2: dest->pub.free_in_buffer = OUTPUT_BUF_SIZE; nuclear@2: } nuclear@2: nuclear@2: static int empty_output_buffer(j_compress_ptr jc) nuclear@2: { nuclear@2: struct dst_mgr *dest = (struct dst_mgr*)jc->dest; nuclear@2: nuclear@2: if(dest->io->write(dest->buffer, OUTPUT_BUF_SIZE, dest->io->uptr) != OUTPUT_BUF_SIZE) { nuclear@2: return 0; nuclear@2: } nuclear@2: nuclear@2: dest->pub.next_output_byte = dest->buffer; nuclear@2: dest->pub.free_in_buffer = OUTPUT_BUF_SIZE; nuclear@2: return 1; nuclear@2: } nuclear@2: nuclear@2: static void term_destination(j_compress_ptr jc) nuclear@2: { nuclear@2: struct dst_mgr *dest = (struct dst_mgr*)jc->dest; nuclear@2: size_t datacount = OUTPUT_BUF_SIZE - dest->pub.free_in_buffer; nuclear@2: nuclear@2: /* write any remaining data in the buffer */ nuclear@2: if(datacount > 0) { nuclear@2: dest->io->write(dest->buffer, datacount, dest->io->uptr); nuclear@2: } nuclear@2: /* XXX flush? ... */ nuclear@2: }