分类: C/C++
2008-08-07 17:38:44
原型
|
功能说明
|
FCObjImage () | 默认构造函数 |
FCObjImage (const FCObjImage & img) | 拷贝构造函数 |
FCObjImage & operator= (const FCObjImage & imgSrc) | 赋值操作 |
BOOL IsValidImage () const | 本图像对象是否有效 |
UINT16 ColorBits () const | 图像的颜色位数(1,4,8,16,24,32) |
DWORD GetPitch () const | 图像每行字节数 |
BYTE * GetBits (int iLine = 0) const | 取得第 iLine 行指针, 左上角为(0,0), 自上而下 |
BYTE * GetBits (int x, int y) const | 取得 (x,y) 点的指针, 左上角为(0,0), 自上而下,自左而右 |
bool IsInside (int x, int y) const | 坐标(x,y)是否在图像内部 |
int Width () const | 宽 |
int Height () const | 高 |
BOOL Create (int iWidth, int iHeight, WORD wColorBit) | 创建一副空图像 |
static void fooCopyPalette (FCObjImage & DibDest, const FCObjImage & DibSrc) | <=8bit图像拷贝调色板 |