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

IP电话/视频会议

开发平台:

Visual C++

  1. /*
  2.  * File: ximawbmp.h
  3.  * Purpose: WBMP 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.  * CxImageWBMP (c) 12/Jul/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.  * COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY
  14.  * OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES
  15.  * THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE
  16.  * OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED
  17.  * CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT
  18.  * THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY
  19.  * SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL
  20.  * PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER
  21.  * THIS DISCLAIMER.
  22.  *
  23.  * Use at your own risk!
  24.  * ==========================================================
  25.  */
  26. #if !defined(__ximaWBMP_h)
  27. #define __ximaWBMP_h
  28. #include "ximage.h"
  29. #if CXIMAGE_SUPPORT_WBMP
  30. class CxImageWBMP: public CxImage
  31. {
  32. #pragma pack(1)
  33. typedef struct tagWbmpHeader
  34. {
  35.     BYTE   Type;            // 0
  36.     BYTE   FixHeader;       // 0
  37.     BYTE   ImageWidth;      // Image Width
  38.     BYTE   ImageHeight;     // Image Height
  39. } WBMPHEADER;
  40. #pragma pack()
  41. public:
  42. CxImageWBMP(): CxImage(CXIMAGE_FORMAT_WBMP) {}
  43. // bool Load(const char * imageFileName){ return CxImage::Load(imageFileName,CXIMAGE_FORMAT_WBMP);}
  44. // bool Save(const char * imageFileName){ return CxImage::Save(imageFileName,CXIMAGE_FORMAT_WBMP);}
  45. bool Decode(CxFile * hFile);
  46. bool Encode(CxFile * hFile);
  47. bool Decode(FILE *hFile) { CxIOFile file(hFile); return Decode(&file); }
  48. bool Encode(FILE *hFile) { CxIOFile file(hFile); return Encode(&file); }
  49. };
  50. #endif
  51. #endif