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

IP电话/视频会议

开发平台:

Visual C++

  1. /*
  2.  * File: ximajbg.h
  3.  * Purpose: JBG 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.  * CxImageJBG (c) 18/Aug/2002 <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.  * based on LIBJBG Copyright (c) 2002, Markus Kuhn - All rights reserved.
  14.  *
  15.  * COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY
  16.  * OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES
  17.  * THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE
  18.  * OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED
  19.  * CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT
  20.  * THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY
  21.  * SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL
  22.  * PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER
  23.  * THIS DISCLAIMER.
  24.  *
  25.  * Use at your own risk!
  26.  * ==========================================================
  27.  */
  28. #if !defined(__ximaJBG_h)
  29. #define __ximaJBG_h
  30. #include "ximage.h"
  31. #if CXIMAGE_SUPPORT_JBG
  32. extern "C" {
  33. #include "../jbig/jbig.h"
  34. };
  35. class CxImageJBG: public CxImage
  36. {
  37. public:
  38. CxImageJBG(): CxImage(CXIMAGE_FORMAT_JBG) {}
  39. // bool Load(const char * imageFileName){ return CxImage::Load(imageFileName,CXIMAGE_FORMAT_JBG);}
  40. // bool Save(const char * imageFileName){ return CxImage::Save(imageFileName,CXIMAGE_FORMAT_JBG);}
  41. bool Decode(CxFile * hFile);
  42. bool Encode(CxFile * hFile);
  43. bool Decode(FILE *hFile) { CxIOFile file(hFile); return Decode(&file); }
  44. bool Encode(FILE *hFile) { CxIOFile file(hFile); return Encode(&file); }
  45. protected:
  46. static void jbig_data_out(BYTE *buffer, unsigned int len, void *file)
  47. {((CxFile*)file)->Write(buffer,len,1);}
  48. };
  49. #endif
  50. #endif