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

IP电话/视频会议

开发平台:

Visual C++

  1. /*
  2.  * File: ximapcx.h
  3.  * Purpose: PCX 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.  * CxImagePCX (c) 05/Jan/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.  * Parts of the code come from Paintlib
  14.  * Copyright (c) 1996-1998 Ulrich von Zadow
  15.  *
  16.  * COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY
  17.  * OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES
  18.  * THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE
  19.  * OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED
  20.  * CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT
  21.  * THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY
  22.  * SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL
  23.  * PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER
  24.  * THIS DISCLAIMER.
  25.  *
  26.  * Use at your own risk!
  27.  * ==========================================================
  28.  */
  29. #if !defined(__ximaPCX_h)
  30. #define __ximaPCX_h
  31. #include "ximage.h"
  32. #if CXIMAGE_SUPPORT_PCX
  33. class CxImagePCX: public CxImage
  34. {
  35. // PCX Image File
  36. #pragma pack(1)
  37. typedef struct tagPCXHEADER
  38. {
  39.   char Manufacturer; // always 0X0A
  40.   char Version; // version number
  41.   char Encoding; // always 1
  42.   char BitsPerPixel; // color bits
  43.   WORD Xmin, Ymin; // image origin
  44.   WORD Xmax, Ymax; // image dimensions
  45.   WORD Hres, Vres; // resolution values
  46.   BYTE ColorMap[16][3]; // color palette
  47.   char Reserved;
  48.   char ColorPlanes; // color planes
  49.   WORD BytesPerLine; // line buffer size
  50.   WORD PaletteType; // grey or color palette
  51.   char Filter[58];
  52. } PCXHEADER;
  53. #pragma pack()
  54. public:
  55. CxImagePCX(): CxImage(CXIMAGE_FORMAT_PCX) {}
  56. // bool Load(const char * imageFileName){ return CxImage::Load(imageFileName,CXIMAGE_FORMAT_PCX);}
  57. // bool Save(const char * imageFileName){ return CxImage::Save(imageFileName,CXIMAGE_FORMAT_PCX);}
  58. bool Decode(CxFile * hFile);
  59. bool Encode(CxFile * hFile);
  60. bool Decode(FILE *hFile) { CxIOFile file(hFile); return Decode(&file); }
  61. bool Encode(FILE *hFile) { CxIOFile file(hFile); return Encode(&file); }
  62. protected:
  63. void PCX_PlanesToPixels(BYTE * pixels, BYTE * bitplanes, short bytesperline, short planes, short bitsperpixel);
  64. void PCX_UnpackPixels(BYTE * pixels, BYTE * bitplanes, short bytesperline, short planes, short bitsperpixel);
  65. void PCX_PackPixels(const long p,BYTE &c, BYTE &n, CxFile &f);
  66. void PCX_PackPlanes(BYTE* buff, const long size, CxFile &f);
  67. void PCX_PixelsToPlanes(BYTE* raw, long width, BYTE* buf, long plane);
  68. };
  69. #endif
  70. #endif