CMAP.H
上传用户:wep9318
上传日期:2007-01-07
资源大小:893k
文件大小:1k
源码类别:

图片显示

开发平台:

Visual C++

  1. /*
  2.  * Colour map (palette) class
  3.  */
  4. #ifndef CMAPH
  5. #define CMAPH
  6. class CImagePalette: public CPalette
  7. {
  8.  public:
  9.   CImagePalette() {}
  10.   CImagePalette(const CImagePalette *pal);
  11.   CImagePalette(const int n, const unsigned char *red, const unsigned char *green, const unsigned char *blue);
  12.   ~CImagePalette(void);
  13.   BOOL Create(const int n, const unsigned char *red, const unsigned char *green, const unsigned char *blue);
  14.   int GetPixel(const unsigned char red, const unsigned char green, const unsigned char blue);
  15.   BOOL GetRGB(const int pixel, unsigned char *red, unsigned char *green, unsigned char *blue);
  16. };
  17. #endif