ximapng.h
上传用户:pass2008
上传日期:2021-07-05
资源大小:3299k
文件大小:2k
源码类别:

Internet/IE编程

开发平台:

Visual C++

  1. /*
  2.  * File: ximapng.h
  3.  * Purpose: PNG Image Class Loader and Writer
  4.  */
  5. /* ==========================================================
  6.  * CxImagePNG (c) 07/Aug/2001 Davide Pizzolato - www.xdp.it
  7.  * For conditions of distribution and use, see copyright notice in ximage.h
  8.  *
  9.  * Special thanks to Troels Knakkergaard for new features, enhancements and bugfixes
  10.  *
  11.  * original CImagePNG  and CImageIterator implementation are:
  12.  * Copyright: (c) 1995, Alejandro Aguilar Sierra <asierra(at)servidor(dot)unam(dot)mx>
  13.  *
  14.  * libpng Copyright (c) 1998-2003 Glenn Randers-Pehrson
  15.  * ==========================================================
  16.  */
  17. #if !defined(__ximaPNG_h)
  18. #define __ximaPNG_h
  19. #include "ximage.h"
  20. #if CXIMAGE_SUPPORT_PNG
  21. extern "C" {
  22. #include "../png/png.h"
  23. }
  24. class CxImagePNG: public CxImage
  25. {
  26. public:
  27. CxImagePNG(): CxImage(CXIMAGE_FORMAT_PNG) {}
  28. // bool Load(const TCHAR * imageFileName){ return CxImage::Load(imageFileName,CXIMAGE_FORMAT_PNG);}
  29. // bool Save(const TCHAR * imageFileName){ return CxImage::Save(imageFileName,CXIMAGE_FORMAT_PNG);}
  30. bool Decode(CxFile * hFile);
  31. bool Decode(FILE *hFile) { CxIOFile file(hFile); return Decode(&file); }
  32. #if CXIMAGE_SUPPORT_ENCODE
  33. bool Encode(CxFile * hFile);
  34. bool Encode(FILE *hFile) { CxIOFile file(hFile); return Encode(&file); }
  35. #endif // CXIMAGE_SUPPORT_ENCODE
  36. protected:
  37. void ima_png_error(png_struct *png_ptr, char *message);
  38. void expand2to4bpp(BYTE* prow);
  39. static void PNGAPI user_read_data(png_structp png_ptr, png_bytep data, png_size_t length)
  40. {
  41. CxFile* hFile = (CxFile*)png_get_io_ptr(png_ptr);
  42. if (hFile == NULL || hFile->Read(data,1,length) != length) png_error(png_ptr, "Read Error");
  43. }
  44. static void PNGAPI user_write_data(png_structp png_ptr, png_bytep data, png_size_t length)
  45. {
  46. CxFile* hFile = (CxFile*)png_get_io_ptr(png_ptr);
  47. if (hFile == NULL || hFile->Write(data,1,length) != length) png_error(png_ptr, "Write Error");
  48. }
  49. static void PNGAPI user_flush_data(png_structp png_ptr)
  50. {
  51. CxFile* hFile = (CxFile*)png_get_io_ptr(png_ptr);
  52. if (hFile == NULL || !hFile->Flush()) png_error(png_ptr, "Flush Error");
  53. }
  54.     static void PNGAPI user_error_fn(png_structp png_ptr,png_const_charp error_msg)
  55. {
  56. strncpy((char*)png_ptr->error_ptr,error_msg,255);
  57. longjmp(png_ptr->jmpbuf, 1);
  58. }
  59. };
  60. #endif
  61. #endif