ximapng.h
上传用户:gnaf34
上传日期:2022-04-22
资源大小:1657k
文件大小:3k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. /*
  2.  * File: ximapng.h
  3.  * Purpose: PNG Image Class Loader and Writer
  4.  */
  5. /* === C R E D I T S  &  D I S C L A I M E R S ==============
  6.  * CxImagePNG (c) 07/Aug/2001 <ing.davide.pizzolato@libero.it>
  7.  * Permission is given by the author to freely redistribute and include
  8.  * this code in any program as long as this credit is given where due.
  9.  *
  10.  * CxImage version 5.00 23/Aug/2002
  11.  * See the file history.htm for the complete bugfix and news report.
  12.  *
  13.  * Special thanks to Troels Knakkergaard for new features, enhancements and bugfixes
  14.  *
  15.  * original CImagePNG  and CImageIterator implementation are:
  16.  * Copyright: (c) 1995, Alejandro Aguilar Sierra <asierra@servidor.unam.mx>
  17.  *
  18.  * libpng version 1.2.1 - December 12, 2001
  19.  * Copyright (c) 1998-2001 Glenn Randers-Pehrson
  20.  *
  21.  * COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY
  22.  * OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES
  23.  * THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE
  24.  * OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED
  25.  * CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT
  26.  * THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY
  27.  * SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL
  28.  * PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER
  29.  * THIS DISCLAIMER.
  30.  *
  31.  * Use at your own risk!
  32.  * ==========================================================
  33.  */
  34. #if !defined(__ximaPNG_h)
  35. #define __ximaPNG_h
  36. #include "ximage.h"
  37. #if CXIMAGE_SUPPORT_PNG
  38. extern "C" {
  39. #include "../png/png.h"
  40. }
  41. class CxImagePNG: public CxImage
  42. {
  43. public:
  44. CxImagePNG(): CxImage(CXIMAGE_FORMAT_PNG) {}
  45. // bool Load(const char * imageFileName){ return CxImage::Load(imageFileName,CXIMAGE_FORMAT_PNG);}
  46. // bool Save(const char * imageFileName){ return CxImage::Save(imageFileName,CXIMAGE_FORMAT_PNG);}
  47. bool Decode(CxFile * hFile);
  48. bool Encode(CxFile * hFile);
  49. bool Decode(FILE *hFile) { CxIOFile file(hFile); return Decode(&file); }
  50. bool Encode(FILE *hFile) { CxIOFile file(hFile); return Encode(&file); }
  51. protected:
  52. void ima_png_error(png_struct *png_ptr, char *message);
  53. void expand2to4bpp(BYTE* prow);
  54. static void user_read_data(png_structp png_ptr, png_bytep data, png_size_t length)
  55. {
  56. CxFile* hFile = (CxFile*)png_ptr->io_ptr;
  57. if (hFile->Read(data,1,length) != length) png_error(png_ptr, "Read Error");
  58. }
  59. static void user_write_data(png_structp png_ptr, png_bytep data, png_size_t length)
  60. {
  61. CxFile* hFile = (CxFile*)png_ptr->io_ptr;
  62. if (hFile->Write(data,1,length) != length) png_error(png_ptr, "Write Error");
  63. }
  64. static void user_flush_data(png_structp png_ptr)
  65. {
  66. CxFile* hFile = (CxFile*)png_ptr->io_ptr;
  67. if (!hFile->Flush()) png_error(png_ptr, "Flush Error");
  68. }
  69.     static void user_error_fn(png_structp png_ptr,png_const_charp error_msg)
  70. {
  71. strncpy((char*)png_ptr->error_ptr,error_msg,255);
  72. longjmp(png_ptr->jmpbuf, 1);
  73. }
  74. };
  75. #endif
  76. #endif