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

IP电话/视频会议

开发平台:

Visual C++

  1. /*
  2.  * File: ximabmp.h
  3.  * Purpose: BMP 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.  * CxImageBMP (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 CImageBMP  and CImageIterator implementation are:
  16.  * Copyright: (c) 1995, Alejandro Aguilar Sierra <asierra@servidor.unam.mx>
  17.  *
  18.  * COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY
  19.  * OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES
  20.  * THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE
  21.  * OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED
  22.  * CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT
  23.  * THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY
  24.  * SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL
  25.  * PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER
  26.  * THIS DISCLAIMER.
  27.  *
  28.  * Use at your own risk!
  29.  * ==========================================================
  30.  */
  31. #if !defined(__ximaBMP_h)
  32. #define __ximaBMP_h
  33. #include "ximage.h"
  34. #if CXIMAGE_SUPPORT_BMP
  35. class CxImageBMP: public CxImage
  36. {
  37. public:
  38. CxImageBMP(): CxImage(CXIMAGE_FORMAT_BMP) {};
  39. bool Decode(CxFile * hFile);
  40. bool Decode(FILE *hFile) { CxIOFile file(hFile); return Decode(&file); }
  41. bool Encode(CxFile * hFile);
  42. bool Encode(FILE *hFile) { CxIOFile file(hFile); return Encode(&file); }
  43. protected:
  44. bool DibReadBitmapInfo(CxFile* fh, BITMAPINFOHEADER *pdib);
  45. };
  46. #define BFT_ICON   0x4349   /* 'IC' */
  47. #define BFT_BITMAP 0x4d42   /* 'BM' */
  48. #define BFT_CURSOR 0x5450   /* 'PT' */
  49. #ifndef WIDTHBYTES
  50. #define WIDTHBYTES(i)           ((unsigned)((i+31)&(~31))/8)  /* ULONG aligned ! */
  51. #endif
  52. #define DibWidthBytesN(lpbi, n) (UINT)WIDTHBYTES((UINT)(lpbi)->biWidth * (UINT)(n))
  53. #define DibWidthBytes(lpbi)     DibWidthBytesN(lpbi, (lpbi)->biBitCount)
  54. #define DibSizeImage(lpbi)      ((lpbi)->biSizeImage == 0 
  55.                                     ? ((DWORD)(UINT)DibWidthBytes(lpbi) * (DWORD)(UINT)(lpbi)->biHeight) 
  56.                                     : (lpbi)->biSizeImage)
  57. #define DibNumColors(lpbi)      ((lpbi)->biClrUsed == 0 && (lpbi)->biBitCount <= 8 
  58.                                     ? (int)(1 << (int)(lpbi)->biBitCount)          
  59.                                     : (int)(lpbi)->biClrUsed)
  60. #define FixBitmapInfo(lpbi)     if ((lpbi)->biSizeImage == 0)                 
  61. (lpbi)->biSizeImage = DibSizeImage(lpbi); 
  62.                                 if ((lpbi)->biClrUsed == 0)                   
  63.                                     (lpbi)->biClrUsed = DibNumColors(lpbi);   
  64. #endif
  65. #endif