分类: C/C++
2008-03-11 09:01:52
原型 |
功能说明 |
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图像拷贝调色板 |
void SinglePixelProcessProc (FCSinglePixelProcessBase & PixelProcessor, FCObjProgress * progress = NULL)并把下面的实现代码拷到FCObjImage类中:
//================================================================ void FCObjImage::SinglePixelProcessProc (FCSinglePixelProcessBase & PixelProcessor, FCObjProgress * progress)4、修改库里的 PixelProcessor.cpp 文件,把FCObjImage所在的.h文件包含进去。
{
if (!PixelProcessor.ValidateColorBits (this))
return ;
// 计算处理区域
RECT rcImg = {0,0,Width(),Height()}, rcBlock, rcDest ;
if (PixelProcessor.GetProcessRect() == NULL)
::CopyRect (&rcBlock, &rcImg) ;
else
::CopyRect (&rcBlock, PixelProcessor.GetProcessRect()) ;
if (::IntersectRect (&rcDest, &rcImg, &rcBlock) == 0)
return ; // 处理区域为空
// 处理前准备工作
int nSpan = ColorBits() / 8 ; // 每象素字节数1, 2, 3, 4
PixelProcessor.OnEnterProcess (this, rcDest) ;
// 遍历处理区域像素
for (int y=rcDest.top ; y < rcDest.bottom ; y++)
{
BYTE * pPixel = GetBits (rcDest.left, y) ;
for (int x=rcDest.left ; x < rcDest.right ; x++, pPixel += nSpan)
{
PixelProcessor.ProcessPixel (this, x, y, pPixel) ;
}
if (progress != NULL)
progress->SetProgress (y * 100 / Height()) ;
}
// 收尾工作
PixelProcessor.OnLeaveProcess (this) ;
}//================================================================
imgTest.SinglePixelProcessProc (FCPixelGrayscale()) ; imgTest.SinglePixelProcessProc (FCPixelInvert()) ; ......2004/3/27 Crazybit