/* Copyright 2005-2007 Adobe Systems Incorporated Use, modification and distribution are subject to the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt). See http://opensource.adobe.com/gil for most recent version including documentation. */ /*************************************************************************************************/ #ifndef GIL_JPEG_IO_PRIVATE_H #define GIL_JPEG_IO_PRIVATE_H /// \file /// \brief Internal support for reading and writing JPEG files /// \author Hailin Jin and Lubomir Bourdev \n /// Adobe Systems Incorporated /// \date 2005-2007 \n Last updated September 24, 2006 #include #include #include #include "../../gil_all.hpp" #include "io_error.hpp" namespace boost { namespace gil { namespace detail { // lbourdev: What is the advantage of having channel and colorspace together? Are there cases where they are interrelated? template struct jpeg_read_support_private { BOOST_STATIC_CONSTANT(bool,is_supported=false); BOOST_STATIC_CONSTANT(J_COLOR_SPACE,color_type=JCS_UNKNOWN); }; template <> struct jpeg_read_support_private { BOOST_STATIC_ASSERT(BITS_IN_JSAMPLE==8); BOOST_STATIC_CONSTANT(bool,is_supported=true); BOOST_STATIC_CONSTANT(J_COLOR_SPACE,color_type=JCS_GRAYSCALE); }; template <> struct jpeg_read_support_private { BOOST_STATIC_ASSERT(BITS_IN_JSAMPLE==8); BOOST_STATIC_CONSTANT(bool,is_supported=true); BOOST_STATIC_CONSTANT(J_COLOR_SPACE,color_type=JCS_RGB); }; template <> struct jpeg_read_support_private { BOOST_STATIC_ASSERT(BITS_IN_JSAMPLE==8); BOOST_STATIC_CONSTANT(bool,is_supported=true); BOOST_STATIC_CONSTANT(J_COLOR_SPACE,color_type=JCS_CMYK); }; template struct jpeg_write_support_private { BOOST_STATIC_CONSTANT(bool,is_supported=false); BOOST_STATIC_CONSTANT(J_COLOR_SPACE,color_type=JCS_UNKNOWN); }; template <> struct jpeg_write_support_private { BOOST_STATIC_ASSERT(BITS_IN_JSAMPLE==8); BOOST_STATIC_CONSTANT(bool,is_supported=true); BOOST_STATIC_CONSTANT(J_COLOR_SPACE,color_type=JCS_GRAYSCALE); }; template <> struct jpeg_write_support_private { BOOST_STATIC_ASSERT(BITS_IN_JSAMPLE==8); BOOST_STATIC_CONSTANT(bool,is_supported=true); BOOST_STATIC_CONSTANT(J_COLOR_SPACE,color_type=JCS_RGB); }; template <> struct jpeg_write_support_private { BOOST_STATIC_ASSERT(BITS_IN_JSAMPLE==8); BOOST_STATIC_CONSTANT(bool,is_supported=true); BOOST_STATIC_CONSTANT(J_COLOR_SPACE,color_type=JCS_CMYK); }; #include typedef struct error_mgr { struct jpeg_error_mgr pub; jmp_buf setjmp_buffer; } *error_ptr; void new_error_exit(j_common_ptr cinfo) { error_ptr err = (error_ptr) cinfo->err; longjmp(err->setjmp_buffer, 1); } class jpeg_reader : public file_mgr { protected: jpeg_decompress_struct _cinfo; // jpeg_error_mgr _jerr; error_mgr _jerr; void init() { _cinfo.err=jpeg_std_error(&_jerr.pub); _jerr.pub.error_exit = new_error_exit; if (setjmp(_jerr.setjmp_buffer)) { io_error_if(true,"jpeg_reader::init(): Could not open file"); return; } jpeg_create_decompress(&_cinfo); jpeg_stdio_src(&_cinfo,_fp.get()); jpeg_read_header(&_cinfo,TRUE); } public: jpeg_reader(FILE* file) : file_mgr(file) { init(); } jpeg_reader(const char* filename) : file_mgr(filename, "rb") { init(); } ~jpeg_reader() { jpeg_destroy_decompress(&_cinfo); } template void apply(const View& view) { jpeg_start_decompress(&_cinfo); // lbourdev: Can this return an error? You need to check and throw. Check all other library methods that can return an error state... io_error_if(_cinfo.data_precision!=8,"jpeg_reader::apply(): this image file is not supported"); io_error_if(_cinfo.out_color_space!=jpeg_read_support_private::type, typename color_space_type::type>::color_type, "jpeg_reader::apply(): input view type does not match the image file"); io_error_if(view.dimensions() != get_dimensions(), "jpeg_reader::apply(): input view dimensions do not match the image file"); std::vector::type> > > row(view.width()); JSAMPLE* row_address=(JSAMPLE*)&row.front(); for(int y=0;y void read_image(Image& im) { im.recreate(get_dimensions()); apply(view(im)); } point2 get_dimensions() const { return point2(_cinfo.image_width,_cinfo.image_height); } }; // This code will be simplified... template class jpeg_reader_color_convert : public jpeg_reader { private: CC _cc; public: jpeg_reader_color_convert(FILE* file,CC cc_in) : jpeg_reader(file),_cc(cc_in) {} jpeg_reader_color_convert(FILE* file) : jpeg_reader(file) {} jpeg_reader_color_convert(const char* filename,CC cc_in) : jpeg_reader(filename),_cc(cc_in) {} jpeg_reader_color_convert(const char* filename) : jpeg_reader(filename) {} template void apply(const View& view) { jpeg_start_decompress(&_cinfo); // lbourdev: Can this return an error? You need to check and throw. Check all other library methods that can return an error state... io_error_if(_cinfo.data_precision!=8,"jpeg_reader_color_covert::apply(): this image file is not supported"); io_error_if(view.dimensions() != get_dimensions(), "jpeg_reader_color_covert::apply(): input view dimensions don't match the image file"); switch (_cinfo.out_color_space) { case JCS_GRAYSCALE: { std::vector row(view.width()); JSAMPLE* row_address=(JSAMPLE*)&row.front(); for(int y=0;y(_cc)); } break; } case JCS_RGB: { std::vector row(view.width()); JSAMPLE* row_address=(JSAMPLE*)&row.front(); for(int y=0;y(_cc)); } break; } case JCS_CMYK: { std::vector row(view.width()); JSAMPLE* row_address=(JSAMPLE*)&row.front(); for(int y=0;y(_cc)); } break; } default: io_error("jpeg_reader_color_covert::apply(): unknown color type"); } jpeg_finish_decompress(&_cinfo); } template void read_image(Image& im) { im.recreate(get_dimensions()); apply(view(im)); } }; class jpeg_writer : public file_mgr { jpeg_compress_struct _cinfo; jpeg_error_mgr _jerr; void init() { _cinfo.err=jpeg_std_error(&_jerr); jpeg_create_compress(&_cinfo); jpeg_stdio_dest(&_cinfo,_fp.get()); } public: jpeg_writer(FILE* file) : file_mgr(file) { init(); } jpeg_writer(const char* filename) : file_mgr(filename, "wb") { init(); } ~jpeg_writer() { jpeg_destroy_compress(&_cinfo); } template void apply(const View& view,int quality=100) { _cinfo.image_width = (JDIMENSION)view.width(); _cinfo.image_height = (JDIMENSION)view.height(); _cinfo.input_components=num_channels::value; _cinfo.in_color_space = jpeg_write_support_private::type, typename color_space_type::type>::color_type; jpeg_set_defaults(&_cinfo); jpeg_set_quality(&_cinfo, quality, TRUE); jpeg_start_compress(&_cinfo, TRUE); std::vector::type> > > row(view.width()); JSAMPLE* row_address=(JSAMPLE*)&row.front(); for (int y=0;y