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

Internet/IE编程

开发平台:

Visual C++

  1. /*
  2.  * File: ximapcx.h
  3.  * Purpose: PCX Image Class Loader and Writer
  4.  */
  5. /* ==========================================================
  6.  * CxImagePCX (c) 05/Jan/2002 Davide Pizzolato - www.xdp.it
  7.  * For conditions of distribution and use, see copyright notice in ximage.h
  8.  *
  9.  * Parts of the code come from Paintlib: Copyright (c) 1996-1998 Ulrich von Zadow
  10.  * ==========================================================
  11.  */
  12. #if !defined(__ximaPCX_h)
  13. #define __ximaPCX_h
  14. #include "ximage.h"
  15. #if CXIMAGE_SUPPORT_PCX
  16. class CxImagePCX: public CxImage
  17. {
  18. // PCX Image File
  19. #pragma pack(1)
  20. typedef struct tagPCXHEADER
  21. {
  22.   char Manufacturer; // always 0X0A
  23.   char Version; // version number
  24.   char Encoding; // always 1
  25.   char BitsPerPixel; // color bits
  26.   WORD Xmin, Ymin; // image origin
  27.   WORD Xmax, Ymax; // image dimensions
  28.   WORD Hres, Vres; // resolution values
  29.   BYTE ColorMap[16][3]; // color palette
  30.   char Reserved;
  31.   char ColorPlanes; // color planes
  32.   WORD BytesPerLine; // line buffer size
  33.   WORD PaletteType; // grey or color palette
  34.   char Filter[58];
  35. } PCXHEADER;
  36. #pragma pack()
  37. public:
  38. CxImagePCX(): CxImage(CXIMAGE_FORMAT_PCX) {}
  39. // bool Load(const TCHAR * imageFileName){ return CxImage::Load(imageFileName,CXIMAGE_FORMAT_PCX);}
  40. // bool Save(const TCHAR * imageFileName){ return CxImage::Save(imageFileName,CXIMAGE_FORMAT_PCX);}
  41. bool Decode(CxFile * hFile);
  42. bool Decode(FILE *hFile) { CxIOFile file(hFile); return Decode(&file); }
  43. #if CXIMAGE_SUPPORT_ENCODE
  44. bool Encode(CxFile * hFile);
  45. bool Encode(FILE *hFile) { CxIOFile file(hFile); return Encode(&file); }
  46. #endif // CXIMAGE_SUPPORT_ENCODE
  47. protected:
  48. bool PCX_PlanesToPixels(BYTE * pixels, BYTE * bitplanes, short bytesperline, short planes, short bitsperpixel);
  49. bool PCX_UnpackPixels(BYTE * pixels, BYTE * bitplanes, short bytesperline, short planes, short bitsperpixel);
  50. void PCX_PackPixels(const long p,BYTE &c, BYTE &n, CxFile &f);
  51. void PCX_PackPlanes(BYTE* buff, const long size, CxFile &f);
  52. void PCX_PixelsToPlanes(BYTE* raw, long width, BYTE* buf, long plane);
  53. void PCX_toh(PCXHEADER* p);
  54. };
  55. #endif
  56. #endif