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