android: Update app-specific/MIME type icons
[LibreOffice.git] / vcl / source / bitmap / BitmapScaleConvolutionFilter.cxx
blob6ee56d14a3666cdf154e9c0fe653e69fa17cc245
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include <osl/diagnose.h>
21 #include <tools/helpers.hxx>
23 #include <bitmap/BitmapWriteAccess.hxx>
24 #include <bitmap/BitmapScaleConvolutionFilter.hxx>
26 #include <algorithm>
27 #include <memory>
29 namespace vcl
32 namespace
35 void ImplCalculateContributions(
36 const sal_Int32 aSourceSize,
37 const sal_Int32 aDestinationSize,
38 sal_Int32& aNumberOfContributions,
39 std::vector<sal_Int16>& rWeights,
40 std::vector<sal_Int32>& rPixels,
41 std::vector<sal_Int32>& rCounts,
42 const Kernel& aKernel)
44 const double fSamplingRadius(aKernel.GetWidth());
45 const double fScale(aDestinationSize / static_cast< double >(aSourceSize));
46 const double fScaledRadius((fScale < 1.0) ? fSamplingRadius / fScale : fSamplingRadius);
47 const double fFilterFactor(std::min(fScale, 1.0));
49 aNumberOfContributions = (sal_Int32(fabs(ceil(fScaledRadius))) * 2) + 1;
50 const sal_Int32 nAllocSize(aDestinationSize * aNumberOfContributions);
51 rWeights.resize(nAllocSize);
52 rPixels.resize(nAllocSize);
53 rCounts.resize(aDestinationSize);
55 for(sal_Int32 i(0); i < aDestinationSize; i++)
57 const sal_Int32 aIndex(i * aNumberOfContributions);
58 const double aCenter(i / fScale);
59 const sal_Int32 aLeft(static_cast< sal_Int32 >(floor(aCenter - fScaledRadius)));
60 const sal_Int32 aRight(static_cast< sal_Int32 >(ceil(aCenter + fScaledRadius)));
61 sal_Int32 aCurrentCount(0);
63 for(sal_Int32 j(aLeft); j <= aRight; j++)
65 const double aWeight(aKernel.Calculate(fFilterFactor * (aCenter - static_cast< double>(j))));
67 // Reduce calculations with ignoring weights of 0.0
68 if(fabs(aWeight) < 0.0001)
70 continue;
73 // Handling on edges
74 const sal_Int32 aPixelIndex(MinMax(j, 0, aSourceSize - 1));
75 const sal_Int32 nIndex(aIndex + aCurrentCount);
77 // scale the weight by 255 since we're converting from float to int
78 rWeights[nIndex] = aWeight * 255;
79 rPixels[nIndex] = aPixelIndex;
81 aCurrentCount++;
84 rCounts[i] = aCurrentCount;
88 bool ImplScaleConvolutionHor(Bitmap& rSource, Bitmap& rTarget, const double& rScaleX, const Kernel& aKernel)
90 // Do horizontal filtering
91 OSL_ENSURE(rScaleX > 0.0, "Error in scaling: Mirror given in non-mirror-capable method (!)");
92 const sal_Int32 nWidth(rSource.GetSizePixel().Width());
93 const sal_Int32 nNewWidth(FRound(nWidth * rScaleX));
95 if(nWidth == nNewWidth)
97 return true;
100 Bitmap::ScopedReadAccess pReadAcc(rSource);
102 if(pReadAcc)
104 std::vector<sal_Int16> aWeights;
105 std::vector<sal_Int32> aPixels;
106 std::vector<sal_Int32> aCounts;
107 sal_Int32 aNumberOfContributions(0);
109 const sal_Int32 nHeight(rSource.GetSizePixel().Height());
110 ImplCalculateContributions(nWidth, nNewWidth, aNumberOfContributions, aWeights, aPixels, aCounts, aKernel);
111 rTarget = Bitmap(Size(nNewWidth, nHeight), vcl::PixelFormat::N24_BPP);
112 BitmapScopedWriteAccess pWriteAcc(rTarget);
113 bool bResult(pWriteAcc);
115 if(bResult)
117 for(sal_Int32 y(0); y < nHeight; y++)
119 Scanline pScanline = pWriteAcc->GetScanline( y );
120 Scanline pScanlineRead = pReadAcc->GetScanline( y );
121 for(sal_Int32 x(0); x < nNewWidth; x++)
123 const sal_Int32 aBaseIndex(x * aNumberOfContributions);
124 sal_Int32 aSum(0);
125 sal_Int32 aValueRed(0);
126 sal_Int32 aValueGreen(0);
127 sal_Int32 aValueBlue(0);
129 for(sal_Int32 j(0); j < aCounts[x]; j++)
131 const sal_Int32 aIndex(aBaseIndex + j);
132 const sal_Int16 aWeight(aWeights[aIndex]);
133 BitmapColor aColor;
135 aSum += aWeight;
137 if(pReadAcc->HasPalette())
139 aColor = pReadAcc->GetPaletteColor(pReadAcc->GetIndexFromData(pScanlineRead, aPixels[aIndex]));
141 else
143 aColor = pReadAcc->GetPixelFromData(pScanlineRead, aPixels[aIndex]);
146 aValueRed += aWeight * aColor.GetRed();
147 aValueGreen += aWeight * aColor.GetGreen();
148 aValueBlue += aWeight * aColor.GetBlue();
151 assert(aSum != 0);
153 const BitmapColor aResultColor(
154 static_cast< sal_uInt8 >(MinMax(static_cast< sal_Int32 >(aValueRed / aSum), 0, 255)),
155 static_cast< sal_uInt8 >(MinMax(static_cast< sal_Int32 >(aValueGreen / aSum), 0, 255)),
156 static_cast< sal_uInt8 >(MinMax(static_cast< sal_Int32 >(aValueBlue / aSum), 0, 255)));
158 pWriteAcc->SetPixelOnData(pScanline, x, aResultColor);
162 pWriteAcc.reset();
165 aWeights.clear();
166 aCounts.clear();
167 aPixels.clear();
169 if(bResult)
171 return true;
175 return false;
178 bool ImplScaleConvolutionVer(Bitmap& rSource, Bitmap& rTarget, const double& rScaleY, const Kernel& aKernel)
180 // Do vertical filtering
181 OSL_ENSURE(rScaleY > 0.0, "Error in scaling: Mirror given in non-mirror-capable method (!)");
182 const sal_Int32 nHeight(rSource.GetSizePixel().Height());
183 const sal_Int32 nNewHeight(FRound(nHeight * rScaleY));
185 if(nHeight == nNewHeight)
187 return true;
190 Bitmap::ScopedReadAccess pReadAcc(rSource);
191 if(!pReadAcc)
192 return false;
194 std::vector<sal_Int16> aWeights;
195 std::vector<sal_Int32> aPixels;
196 std::vector<sal_Int32> aCounts;
197 sal_Int32 aNumberOfContributions(0);
199 const sal_Int32 nWidth(rSource.GetSizePixel().Width());
200 ImplCalculateContributions(nHeight, nNewHeight, aNumberOfContributions, aWeights, aPixels, aCounts, aKernel);
201 rTarget = Bitmap(Size(nWidth, nNewHeight), vcl::PixelFormat::N24_BPP);
202 BitmapScopedWriteAccess pWriteAcc(rTarget);
203 if(!pWriteAcc)
204 return false;
206 std::vector<BitmapColor> aScanline(nHeight);
207 for(sal_Int32 x(0); x < nWidth; x++)
209 for(sal_Int32 y(0); y < nHeight; y++)
210 if(pReadAcc->HasPalette())
211 aScanline[y] = pReadAcc->GetPaletteColor(pReadAcc->GetPixelIndex(y, x));
212 else
213 aScanline[y] = pReadAcc->GetPixel(y, x);
214 for(sal_Int32 y(0); y < nNewHeight; y++)
216 const sal_Int32 aBaseIndex(y * aNumberOfContributions);
217 sal_Int32 aSum(0);
218 sal_Int32 aValueRed(0);
219 sal_Int32 aValueGreen(0);
220 sal_Int32 aValueBlue(0);
222 for(sal_Int32 j(0); j < aCounts[y]; j++)
224 const sal_Int32 aIndex(aBaseIndex + j);
225 const sal_Int16 aWeight(aWeights[aIndex]);
226 aSum += aWeight;
227 const BitmapColor & aColor = aScanline[aPixels[aIndex]];
228 aValueRed += aWeight * aColor.GetRed();
229 aValueGreen += aWeight * aColor.GetGreen();
230 aValueBlue += aWeight * aColor.GetBlue();
233 assert(aSum != 0);
235 const BitmapColor aResultColor(
236 static_cast< sal_uInt8 >(MinMax(static_cast< sal_Int32 >(aValueRed / aSum), 0, 255)),
237 static_cast< sal_uInt8 >(MinMax(static_cast< sal_Int32 >(aValueGreen / aSum), 0, 255)),
238 static_cast< sal_uInt8 >(MinMax(static_cast< sal_Int32 >(aValueBlue / aSum), 0, 255)));
240 if(pWriteAcc->HasPalette())
242 pWriteAcc->SetPixelIndex(y, x, static_cast< sal_uInt8 >(pWriteAcc->GetBestPaletteIndex(aResultColor)));
244 else
246 pWriteAcc->SetPixel(y, x, aResultColor);
251 aWeights.clear();
252 aCounts.clear();
253 aPixels.clear();
255 return true;
258 bool ImplScaleConvolution(Bitmap& rBitmap, const double& rScaleX, const double& rScaleY, const Kernel& aKernel)
260 const bool bMirrorHor(rScaleX < 0.0);
261 const bool bMirrorVer(rScaleY < 0.0);
262 const double fScaleX(bMirrorHor ? -rScaleX : rScaleX);
263 const double fScaleY(bMirrorVer ? -rScaleY : rScaleY);
264 const sal_Int32 nWidth(rBitmap.GetSizePixel().Width());
265 const sal_Int32 nHeight(rBitmap.GetSizePixel().Height());
266 const sal_Int32 nNewWidth(FRound(nWidth * fScaleX));
267 const sal_Int32 nNewHeight(FRound(nHeight * fScaleY));
268 const bool bScaleHor(nWidth != nNewWidth);
269 const bool bScaleVer(nHeight != nNewHeight);
270 const bool bMirror(bMirrorHor || bMirrorVer);
272 if (!bMirror && !bScaleHor && !bScaleVer)
274 return true;
277 bool bResult(true);
278 BmpMirrorFlags nMirrorFlags(BmpMirrorFlags::NONE);
279 bool bMirrorAfter(false);
281 if (bMirror)
283 if(bMirrorHor)
285 nMirrorFlags |= BmpMirrorFlags::Horizontal;
288 if(bMirrorVer)
290 nMirrorFlags |= BmpMirrorFlags::Vertical;
293 const sal_Int32 nStartSize(nWidth * nHeight);
294 const sal_Int32 nEndSize(nNewWidth * nNewHeight);
296 bMirrorAfter = nStartSize > nEndSize;
298 if(!bMirrorAfter)
300 bResult = rBitmap.Mirror(nMirrorFlags);
304 Bitmap aResult;
306 if (bResult)
308 const sal_Int32 nInBetweenSizeHorFirst(nHeight * nNewWidth);
309 const sal_Int32 nInBetweenSizeVerFirst(nNewHeight * nWidth);
310 Bitmap aSource(rBitmap);
312 if(nInBetweenSizeHorFirst < nInBetweenSizeVerFirst)
314 if(bScaleHor)
316 bResult = ImplScaleConvolutionHor(aSource, aResult, fScaleX, aKernel);
319 if(bResult && bScaleVer)
321 if(bScaleHor)
323 // copy partial result, independent of color depth
324 aSource = aResult;
327 bResult = ImplScaleConvolutionVer(aSource, aResult, fScaleY, aKernel);
330 else
332 if(bScaleVer)
334 bResult = ImplScaleConvolutionVer(aSource, aResult, fScaleY, aKernel);
337 if(bResult && bScaleHor)
339 if(bScaleVer)
341 // copy partial result, independent of color depth
342 aSource = aResult;
345 bResult = ImplScaleConvolutionHor(aSource, aResult, fScaleX, aKernel);
350 if(bResult && bMirrorAfter)
352 bResult = aResult.Mirror(nMirrorFlags);
355 if(bResult)
357 rBitmap.AdaptBitCount(aResult);
358 rBitmap = aResult;
361 return bResult;
364 } // end anonymous namespace
366 BitmapEx BitmapScaleConvolutionFilter::execute(BitmapEx const& rBitmapEx) const
368 bool bRetval = false;
369 Bitmap aBitmap(rBitmapEx.GetBitmap());
371 bRetval = ImplScaleConvolution(aBitmap, mrScaleX, mrScaleY, *mxKernel);
373 if (bRetval)
374 return BitmapEx(aBitmap);
376 return BitmapEx();
381 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */