/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This file is part of the Collabora Office project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 */

#include <vcl/bitmap/BitmapSolarizeFilter.hxx>
#include <vcl/BitmapWriteAccess.hxx>

Bitmap BitmapSolarizeFilter::execute(Bitmap const& rBitmap) const
{
    Bitmap aBitmap(rBitmap);
    BitmapScopedWriteAccess pWriteAcc(aBitmap);

    if (!pWriteAcc)
        return Bitmap();

    if (pWriteAcc->HasPalette())
    {
        const BitmapPalette& rPal = pWriteAcc->GetPalette();

        for (sal_uInt16 i = 0, nCount = rPal.GetEntryCount(); i < nCount; i++)
        {
            if (rPal[i].GetLuminance() >= mcSolarGreyThreshold)
            {
                BitmapColor aCol(rPal[i]);
                aCol.Invert();
                pWriteAcc->SetPaletteColor(i, aCol);
            }
        }
    }
    else
    {
        BitmapColor aCol;
        const sal_Int32 nWidth = pWriteAcc->Width();
        const sal_Int32 nHeight = pWriteAcc->Height();

        for (sal_Int32 nY = 0; nY < nHeight; nY++)
        {
            Scanline pScanline = pWriteAcc->GetScanline(nY);
            for (sal_Int32 nX = 0; nX < nWidth; nX++)
            {
                aCol = pWriteAcc->GetPixelFromData(pScanline, nX);

                if (aCol.GetLuminance() >= mcSolarGreyThreshold)
                {
                    aCol.Invert();
                    pWriteAcc->SetPixelOnData(pScanline, nX, aCol);
                }
            }
        }
    }

    pWriteAcc.reset();

    return aBitmap;
}

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
