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

Internet/IE编程

开发平台:

Visual C++

  1. /*
  2.  * File: ximajbg.h
  3.  * Purpose: JBG Image Class Loader and Writer
  4.  */
  5. /* ==========================================================
  6.  * CxImageJBG (c) 18/Aug/2002 Davide Pizzolato - www.xdp.it
  7.  * For conditions of distribution and use, see copyright notice in ximage.h
  8.  *
  9.  * based on LIBJBG Copyright (c) 2002, Markus Kuhn - All rights reserved.
  10.  * ==========================================================
  11.  */
  12. #if !defined(__ximaJBG_h)
  13. #define __ximaJBG_h
  14. #include "ximage.h"
  15. #if CXIMAGE_SUPPORT_JBG
  16. extern "C" {
  17. #include "../jbig/jbig.h"
  18. };
  19. class CxImageJBG: public CxImage
  20. {
  21. public:
  22. CxImageJBG(): CxImage(CXIMAGE_FORMAT_JBG) {}
  23. // bool Load(const TCHAR * imageFileName){ return CxImage::Load(imageFileName,CXIMAGE_FORMAT_JBG);}
  24. // bool Save(const TCHAR * imageFileName){ return CxImage::Save(imageFileName,CXIMAGE_FORMAT_JBG);}
  25. bool Decode(CxFile * hFile);
  26. bool Decode(FILE *hFile) { CxIOFile file(hFile); return Decode(&file); }
  27. #if CXIMAGE_SUPPORT_ENCODE
  28. bool Encode(CxFile * hFile);
  29. bool Encode(FILE *hFile) { CxIOFile file(hFile); return Encode(&file); }
  30. #endif // CXIMAGE_SUPPORT_ENCODE
  31. protected:
  32. static void jbig_data_out(BYTE *buffer, unsigned int len, void *file)
  33. {((CxFile*)file)->Write(buffer,len,1);}
  34. };
  35. #endif
  36. #endif