blob: ce37c91fdd58ce4ef520564e9283411566fbd17c (
plain)
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice 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 <tools/solar.h>
#include <vcl/bitmap.hxx>
#include <vcl/bitmapex.hxx>
#include <vcl/BitmapPopArtFilter.hxx>
#include <bitmap/BitmapWriteAccess.hxx>
BitmapEx BitmapPopArtFilter::execute(BitmapEx const& rBitmapEx) const
{
Bitmap aBitmap(rBitmapEx.GetBitmap());
bool bRet = isPalettePixelFormat(aBitmap.getPixelFormat())
|| aBitmap.Convert(BmpConversion::N8BitColors);
if (bRet)
{
bRet = false;
BitmapScopedWriteAccess pWriteAcc(aBitmap);
if (pWriteAcc)
{
const sal_Int32 nWidth = pWriteAcc->Width();
const sal_Int32 nHeight = pWriteAcc->Height();
const int nEntryCount = 1 << pWriteAcc->GetBitCount();
int n = 0;
std::vector<PopArtEntry> aPopArtTable(nEntryCount);
for (n = 0; n < nEntryCount; n++)
{
PopArtEntry& rEntry = aPopArtTable[n];
rEntry.mnIndex = static_cast<sal_uInt16>(n);
rEntry.mnCount = 0;
}
// get pixel count for each palette entry
for (sal_Int32 nY = 0; nY < nHeight; nY++)
{
Scanline pScanline = pWriteAcc->GetScanline(nY);
for (sal_Int32 nX = 0; nX < nWidth; nX++)
{
aPopArtTable[pWriteAcc->GetIndexFromData(pScanline, nX)].mnCount++;
}
}
// sort table
std::sort(aPopArtTable.begin(), aPopArtTable.end(),
[](const PopArtEntry& lhs, const PopArtEntry& rhs) {
return lhs.mnCount > rhs.mnCount;
});
// get last used entry
sal_uLong nFirstEntry;
sal_uLong nLastEntry = 0;
for (n = 0; n < nEntryCount; n++)
{
if (aPopArtTable[n].mnCount)
nLastEntry = n;
}
// rotate palette (one entry)
const BitmapColor aFirstCol(pWriteAcc->GetPaletteColor(
sal::static_int_cast<sal_uInt16>(aPopArtTable[0].mnIndex)));
for (nFirstEntry = 0; nFirstEntry < nLastEntry; nFirstEntry++)
{
pWriteAcc->SetPaletteColor(
sal::static_int_cast<sal_uInt16>(aPopArtTable[nFirstEntry].mnIndex),
pWriteAcc->GetPaletteColor(
sal::static_int_cast<sal_uInt16>(aPopArtTable[nFirstEntry + 1].mnIndex)));
}
pWriteAcc->SetPaletteColor(
sal::static_int_cast<sal_uInt16>(aPopArtTable[nLastEntry].mnIndex), aFirstCol);
// cleanup
pWriteAcc.reset();
bRet = true;
}
}
if (bRet)
return BitmapEx(aBitmap);
return BitmapEx();
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|