DriveHQ Start Menu
Cloud Drive Mapping
Folder Sync
True Drop Box
FTP/SFTP Hosting
Group Account
Team Anywhere
DriveHQ Start Menu
Online File Server
My Storage
|
Manage Shares
|
Publishes
|
Drop Boxes
|
Group Account
WebDAV Drive Mapping
Cloud Drive Home
|
WebDAV Guide
|
Drive Mapping Tool
|
Drive Mapping URL
Complete Data Backup
Backup Guide
|
Cloud-to-Cloud Backup
|
DVR/Camera Backup
FTP, Email & Web Service
FTP/SFTP Hosting
|
Email Hosting
|
Web Hosting
|
Webcam Hosting
Other Products & Services
Team Anywhere
|
Connect to Remote PC
|
Cloud Surveillance
|
Virtual CCTV NVR
Quick Links
Security and Privacy
Customer Support
Service Manual
Use Cases
Group Account
Online Help
Support Forum
Contact Us
About DriveHQ
Sign Up
Login
Features
Business Features
Online File Server
FTP Hosting
Cloud Drive Mapping
Cloud File Backup
Email Backup & Hosting
Cloud File Sharing
Folder Synchronization
Group Management
True Drop Box
Full-text Search
AD Integration/SSO
Mobile Access
Personal Features
Personal Cloud Drive
Backup All Devices
Mobile APPs
Personal Web Hosting
Sub-Account (for Kids)
Home/PC/Kids Monitoring
Other Features
Team Anywhere (Remote Desktop Service)
CameraFTP Cloud Surveillance
Software
DriveHQ Drive Mapping Tool
DriveHQ FileManager
DriveHQ Online Backup
DriveHQ Team Anywhere for Windows (Beta)
DriveHQ Mobile Apps
Pricing
Business Plans & Pricing
Personal Plans & Pricing
Price Comparison with Others
Feature Comparison with Others
Install Mobile App
Sign up
Creating account...
Invalid character in username! Only 0-9, a-z, A-Z, _, -, . allowed.
Username is required!
Invalid email address!
E-mail is required!
Password is required!
Password is invalid!
Password and confirmation do not match.
Confirm password is required!
I accept
Membership Agreement
Please read the Membership Agreement and check "I accept"!
Free Quick Sign-up
Sign-up Page
Log in
Signing in...
Username or e-mail address is required!
Password is required!
Keep me logged in
Quick Login
Forgot Password
Up
Upload
Download
Share
Publish
New Folder
New File
Copy
Cut
Delete
Paste
Rate
Upgrade
Rotate
Effect
Edit
Slide
History
/* 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_PNG_IO_PRIVATE_H #define GIL_PNG_IO_PRIVATE_H /// \file /// \brief Internal support for reading and writing PNG files /// \author Hailin Jin and Lubomir Bourdev \n /// Adobe Systems Incorporated /// \date 2005-2007 \n Last updated August 14, 2007 #include
#include
#include
#include "../../gil_all.hpp" #include "io_error.hpp" namespace boost { namespace gil { namespace detail { static const size_t PNG_BYTES_TO_CHECK = 4; // lbourdev: These can be greatly simplified, for example: template
struct png_color_type {BOOST_STATIC_CONSTANT(int,color_type=0);}; template<> struct png_color_type
{ BOOST_STATIC_CONSTANT(int,color_type=PNG_COLOR_TYPE_GRAY); }; template<> struct png_color_type
{ BOOST_STATIC_CONSTANT(int,color_type=PNG_COLOR_TYPE_RGB); }; template<> struct png_color_type
{ BOOST_STATIC_CONSTANT(int,color_type=PNG_COLOR_TYPE_RGBA); }; template
struct png_is_supported {BOOST_STATIC_CONSTANT(bool,value=false);}; template <> struct png_is_supported
{BOOST_STATIC_CONSTANT(bool,value=true);}; template <> struct png_is_supported
{BOOST_STATIC_CONSTANT(bool,value=true);}; template <> struct png_is_supported
{BOOST_STATIC_CONSTANT(bool,value=true);}; template <> struct png_is_supported
{BOOST_STATIC_CONSTANT(bool,value=true);}; template <> struct png_is_supported
{BOOST_STATIC_CONSTANT(bool,value=true);}; template <> struct png_is_supported
{BOOST_STATIC_CONSTANT(bool,value=true);}; template
struct png_bit_depth {BOOST_STATIC_CONSTANT(int,bit_depth=sizeof(Channel)*8);}; template
struct png_read_support_private { BOOST_STATIC_CONSTANT(bool,is_supported=false); BOOST_STATIC_CONSTANT(int,bit_depth=0); BOOST_STATIC_CONSTANT(int,color_type=0); }; template <> struct png_read_support_private
{ BOOST_STATIC_CONSTANT(bool,is_supported=true); BOOST_STATIC_CONSTANT(int,bit_depth=8); BOOST_STATIC_CONSTANT(int,color_type=PNG_COLOR_TYPE_GRAY); }; template <> struct png_read_support_private
{ BOOST_STATIC_CONSTANT(bool,is_supported=true); BOOST_STATIC_CONSTANT(int,bit_depth=8); BOOST_STATIC_CONSTANT(int,color_type=PNG_COLOR_TYPE_RGB); }; template <> struct png_read_support_private
{ BOOST_STATIC_CONSTANT(bool,is_supported=true); BOOST_STATIC_CONSTANT(int,bit_depth=8); BOOST_STATIC_CONSTANT(int,color_type=PNG_COLOR_TYPE_RGBA); }; template <> struct png_read_support_private
{ BOOST_STATIC_CONSTANT(bool,is_supported=true); BOOST_STATIC_CONSTANT(int,bit_depth=16); BOOST_STATIC_CONSTANT(int,color_type=PNG_COLOR_TYPE_GRAY); }; template <> struct png_read_support_private
{ BOOST_STATIC_CONSTANT(bool,is_supported=true); BOOST_STATIC_CONSTANT(int,bit_depth=16); BOOST_STATIC_CONSTANT(int,color_type=PNG_COLOR_TYPE_RGB); }; template <> struct png_read_support_private
{ BOOST_STATIC_CONSTANT(bool,is_supported=true); BOOST_STATIC_CONSTANT(int,bit_depth=16); BOOST_STATIC_CONSTANT(int,color_type=PNG_COLOR_TYPE_RGBA); }; template
struct png_write_support_private { BOOST_STATIC_CONSTANT(bool,is_supported=false); BOOST_STATIC_CONSTANT(int,bit_depth=0); BOOST_STATIC_CONSTANT(int,color_type=0); }; template <> struct png_write_support_private
{ BOOST_STATIC_CONSTANT(bool,is_supported=true); BOOST_STATIC_CONSTANT(int,bit_depth=8); BOOST_STATIC_CONSTANT(int,color_type=PNG_COLOR_TYPE_GRAY); }; template <> struct png_write_support_private
{ BOOST_STATIC_CONSTANT(bool,is_supported=true); BOOST_STATIC_CONSTANT(int,bit_depth=8); BOOST_STATIC_CONSTANT(int,color_type=PNG_COLOR_TYPE_RGB); }; template <> struct png_write_support_private
{ BOOST_STATIC_CONSTANT(bool,is_supported=true); BOOST_STATIC_CONSTANT(int,bit_depth=8); BOOST_STATIC_CONSTANT(int,color_type=PNG_COLOR_TYPE_RGBA); }; template <> struct png_write_support_private
{ BOOST_STATIC_CONSTANT(bool,is_supported=true); BOOST_STATIC_CONSTANT(int,bit_depth=16); BOOST_STATIC_CONSTANT(int,color_type=PNG_COLOR_TYPE_GRAY); }; template <> struct png_write_support_private
{ BOOST_STATIC_CONSTANT(bool,is_supported=true); BOOST_STATIC_CONSTANT(int,bit_depth=16); BOOST_STATIC_CONSTANT(int,color_type=PNG_COLOR_TYPE_RGB); }; template <> struct png_write_support_private
{ BOOST_STATIC_CONSTANT(bool,is_supported=true); BOOST_STATIC_CONSTANT(int,bit_depth=16); BOOST_STATIC_CONSTANT(int,color_type=PNG_COLOR_TYPE_RGBA); }; class png_reader : public file_mgr { protected: png_structp _png_ptr; png_infop _info_ptr; void init() { char buf[PNG_BYTES_TO_CHECK]; // read in some of the signature bytes io_error_if(fread(buf, 1, PNG_BYTES_TO_CHECK, get()) != detail::PNG_BYTES_TO_CHECK, "png_check_validity: fail to read file"); // compare the first PNG_BYTES_TO_CHECK bytes of the signature. io_error_if(png_sig_cmp((png_bytep)buf, (png_size_t)0, detail::PNG_BYTES_TO_CHECK)!=0, "png_check_validity: invalid png file"); _png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING,NULL,NULL,NULL); io_error_if(_png_ptr==NULL,"png_get_file_size: fail to call png_create_write_struct()"); // allocate/initialize the image information data _info_ptr = png_create_info_struct(_png_ptr); if (_info_ptr == NULL) { png_destroy_read_struct(&_png_ptr,png_infopp_NULL,png_infopp_NULL); io_error("png_get_file_size: fail to call png_create_info_struct()"); } if (setjmp(png_jmpbuf(_png_ptr))) { //free all of the memory associated with the png_ptr and info_ptr png_destroy_read_struct(&_png_ptr, &_info_ptr, png_infopp_NULL); io_error("png_get_file_size: fail to call setjmp()"); } png_init_io(_png_ptr, get()); png_set_sig_bytes(_png_ptr,PNG_BYTES_TO_CHECK); png_read_info(_png_ptr, _info_ptr); if (little_endian() && png_get_bit_depth(_png_ptr,_info_ptr)>8) png_set_swap(_png_ptr); } public: png_reader(FILE* file ) : file_mgr(file) { init(); } png_reader(const char* filename) : file_mgr(filename, "rb") { init(); } ~png_reader() { png_destroy_read_struct(&_png_ptr,&_info_ptr,png_infopp_NULL); } point2
get_dimensions() { return point2
(png_get_image_width(_png_ptr,_info_ptr), png_get_image_height(_png_ptr,_info_ptr)); } template
void apply(const View& view) { png_uint_32 width, height; int bit_depth, color_type, interlace_type; png_get_IHDR(_png_ptr, _info_ptr, &width, &height,&bit_depth,&color_type,&interlace_type, int_p_NULL, int_p_NULL); io_error_if(((png_uint_32)view.width()!=width || (png_uint_32)view.height()!= height), "png_read_view: input view size does not match PNG file size"); if(png_read_support_private
::type, typename color_space_type
::type>::bit_depth!=bit_depth || png_read_support_private
::type, typename color_space_type
::type>::color_type!=color_type) io_error("png_read_view: input view type is incompatible with the image type"); std::vector
::type, layout
::type> > > row(width); for(png_uint_32 y=0;y
void read_image(Image& im) { im.recreate(get_dimensions()); apply(view(im)); } }; // This code will be simplified... template
class png_reader_color_convert : public png_reader { private: CC _cc; public: png_reader_color_convert(FILE* file ,CC cc_in) : png_reader(file),_cc(cc_in) {} png_reader_color_convert(FILE* file ) : png_reader(file) {} png_reader_color_convert(const char* filename,CC cc_in) : png_reader(filename),_cc(cc_in) {} png_reader_color_convert(const char* filename) : png_reader(filename) {} template
void apply(const View& view) { png_uint_32 width, height; int bit_depth, color_type, interlace_type; png_get_IHDR(_png_ptr, _info_ptr, &width, &height,&bit_depth,&color_type,&interlace_type, int_p_NULL, int_p_NULL); io_error_if(((png_uint_32)view.width()!=width || (png_uint_32)view.height()!= height), "png_reader_color_convert::apply(): input view size does not match PNG file size"); switch (color_type) { case PNG_COLOR_TYPE_GRAY: switch (bit_depth) { case 8: { std::vector
row(width); for(png_uint_32 y=0;y
(_cc)); } break; } case 16: { std::vector
row(width); for(png_uint_32 y=0;y
(_cc)); } break; } default: io_error("png_reader_color_convert::apply(): unknown combination of color type and bit depth"); } break; case PNG_COLOR_TYPE_RGB: switch (bit_depth) { case 8: { std::vector
row(width); for(png_uint_32 y=0;y
(_cc)); } break; } case 16: { std::vector
row(width); for(png_uint_32 y=0;y
(_cc)); } break; } default: io_error("png_reader_color_convert::apply(): unknown combination of color type and bit depth"); } break; case PNG_COLOR_TYPE_RGBA: switch (bit_depth) { case 8: { std::vector
row(width); for(png_uint_32 y=0;y
(_cc)); } break; } case 16: { std::vector
row(width); for(png_uint_32 y=0;y
(_cc)); } break; } default: io_error("png_reader_color_convert::apply(): unknown combination of color type and bit depth"); } break; default: io_error("png_reader_color_convert::apply(): unknown color type"); } png_read_end(_png_ptr,NULL); } template
void read_image(Image& im) { im.recreate(get_dimensions()); apply(view(im)); } }; class png_writer : public file_mgr { protected: png_structp _png_ptr; png_infop _info_ptr; void init() { _png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING,NULL,NULL,NULL); io_error_if(!_png_ptr,"png_write_initialize: fail to call png_create_write_struct()"); _info_ptr = png_create_info_struct(_png_ptr); if (!_info_ptr) { png_destroy_write_struct(&_png_ptr,png_infopp_NULL); io_error("png_write_initialize: fail to call png_create_info_struct()"); } if (setjmp(png_jmpbuf(_png_ptr))) { png_destroy_write_struct(&_png_ptr, &_info_ptr); io_error("png_write_initialize: fail to call setjmp(png_jmpbuf())"); } png_init_io(_png_ptr,get()); } public: png_writer(FILE* file ) : file_mgr(file) { init(); } png_writer(const char* filename) : file_mgr(filename, "wb") { init(); } ~png_writer() { png_destroy_write_struct(&_png_ptr,&_info_ptr); } template
void apply(const View& view) { png_set_IHDR(_png_ptr, _info_ptr, view.width(), view.height(), png_write_support_private
::type, typename color_space_type
::type>::bit_depth, png_write_support_private
::type, typename color_space_type
::type>::color_type, PNG_INTERLACE_NONE, PNG_COMPRESSION_TYPE_DEFAULT,PNG_FILTER_TYPE_DEFAULT); png_write_info(_png_ptr,_info_ptr); if (little_endian() && png_write_support_private
::type, typename color_space_type
::type>::bit_depth>8) png_set_swap(_png_ptr); std::vector
::type, layout
::type> > > row(view.width()); for(int y=0;y
png_io_private.hpp
Page URL
File URL
Prev
8/10
Next
Download
( 15 KB )
Note: The DriveHQ service banners will NOT be displayed if the file owner is a paid member.
Comments
Total ratings:
0
Average rating:
Not Rated
Would you like to comment?
Join DriveHQ
for a free account, or
Logon
if you are already a member.