本文整理汇总了C++中Bitmap::PixelBytes方法的典型用法代码示例。如果您正苦于以下问题:C++ Bitmap::PixelBytes方法的具体用法?C++ Bitmap::PixelBytes怎么用?C++ Bitmap::PixelBytes使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Bitmap
的用法示例。
在下文中一共展示了Bitmap::PixelBytes方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: Bitmap
Bitmap* SoftGlow::Process2(const Bitmap* src, int radius, float sharpness, float brightness)
{
assert(src && src->IsValid());
Bitmap* dst = new Bitmap(src->Width(), src->Height(), src->biBitCount, 0, false);
assert(dst);
//calc sharpness and brightness
for (int y = 0; y < src->Height(); y++)
{
uint8* p0 = src->Get(0, y);
uint8* p1 = dst->Get(0, y);
for (int x = 0; x < src->Width(); x++)
{
*(p1 + 0) = (uint8)CalcSharpAndBright(*(p0 + 0), sharpness, brightness);
*(p1 + 1) = (uint8)CalcSharpAndBright(*(p0 + 1), sharpness, brightness);
*(p1 + 2) = (uint8)CalcSharpAndBright(*(p0 + 2), sharpness, brightness);
p0 += src->PixelBytes();
p1 += dst->PixelBytes();
}
}
//gaussion filter
Gaussion(dst, (float)radius);
#ifdef _DEBUG
dst->Save("f:\\tmp0.bmp");
#endif
int temp;
for (int y = 0; y < src->Height(); y++)
{
uint8* p0 = src->Get(0, y);
uint8* p1 = dst->Get(0, y);
for (int x = 0; x < src->Width(); x++)
{
//screen op
*(p1 + 0) = 255 - INT_MULT((255 - *(p0 + 0)), (255 - *(p1 + 0)), temp);
*(p1 + 1) = 255 - INT_MULT((255 - *(p0 + 1)), (255 - *(p1 + 1)), temp);
*(p1 + 2) = 255 - INT_MULT((255 - *(p0 + 2)), (255 - *(p1 + 2)), temp);
p0 += src->PixelBytes();
p1 += dst->PixelBytes();
}
}
return dst;
}