1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
/*
/--------------------------------------------------------------------
|
| $Id: plfilterlightness.cpp,v 1.9 2004/09/11 12:41:36 uzadow Exp $
|
| Copyright (c) 1996-2002 Ulrich von Zadow
|
\--------------------------------------------------------------------
*/
#include "plfilterlightness.h"
#include "plbitmap.h"
PLFilterLightness::PLFilterLightness(int lightness)
: PLFilter(),
m_lightness(lightness)
{
}
PLFilterLightness::~PLFilterLightness()
{
}
void PLFilterLightness::Apply(PLBmpBase * pBmpSource, PLBmp * pBmpDest) const
{
int total = 0;
double lightness = 2.55 * (double) (m_lightness);
PLASSERT (pBmpSource->GetBitsPerPixel() == 32);
pBmpDest->Create (pBmpSource->GetWidth(),
pBmpSource->GetHeight(),
pBmpSource->GetPixelFormat(),
NULL, 0,
pBmpSource->GetResolution());
PLBYTE ** pSrcLines = pBmpSource->GetLineArray();
PLBYTE ** pDstLines = pBmpDest->GetLineArray();
int destWidth = pBmpDest->GetWidth();
double red, green, blue;
for (int y = 0; y < pBmpDest->GetHeight(); ++y)
{ // For each line
PLBYTE * pSrcPixel = pSrcLines[y];
PLBYTE * pDstPixel = pDstLines[y];
for (int x = 0; x < destWidth; ++x)
{
red = (double) pSrcPixel[PL_RGBA_RED] + lightness;
green = (double) pSrcPixel[PL_RGBA_GREEN] + lightness;
blue = (double) pSrcPixel[PL_RGBA_BLUE] + lightness;
if(red >= 255.0)
pDstPixel[PL_RGBA_RED] = (PLBYTE) 255;
else if (red < 0.0)
pDstPixel[PL_RGBA_RED] = (PLBYTE) 0;
else
pDstPixel[PL_RGBA_RED] = (PLBYTE) red;
if(green >= 255.0)
pDstPixel[PL_RGBA_GREEN] = (PLBYTE) 255;
else if (green < 0.0)
pDstPixel[PL_RGBA_GREEN] = (PLBYTE) 0;
else
pDstPixel[PL_RGBA_GREEN] = (PLBYTE) green;
if(blue >= 255.0)
pDstPixel[PL_RGBA_BLUE] = (PLBYTE) 255;
else if (blue < 0.0)
pDstPixel[PL_RGBA_BLUE] = (PLBYTE) 0;
else
pDstPixel[PL_RGBA_BLUE] = (PLBYTE) blue;
pSrcPixel += 4;
pDstPixel += 4;
}
}
}
|