CMAP.H
资源名称:Cimage.zip [点击查看]
上传用户:wep9318
上传日期:2007-01-07
资源大小:893k
文件大小:1k
源码类别:
图片显示
开发平台:
Visual C++
- /*
- * Colour map (palette) class
- */
- #ifndef CMAPH
- #define CMAPH
- class CImagePalette: public CPalette
- {
- public:
- CImagePalette() {}
- CImagePalette(const CImagePalette *pal);
- CImagePalette(const int n, const unsigned char *red, const unsigned char *green, const unsigned char *blue);
- ~CImagePalette(void);
- BOOL Create(const int n, const unsigned char *red, const unsigned char *green, const unsigned char *blue);
- int GetPixel(const unsigned char red, const unsigned char green, const unsigned char blue);
- BOOL GetRGB(const int pixel, unsigned char *red, unsigned char *green, unsigned char *blue);
- };
- #endif