From 8559353af24123c7a736e64311d57d85bb3cb44c Mon Sep 17 00:00:00 2001 From: Chris Sherlock Date: Thu, 19 Apr 2018 06:50:32 +1000 Subject: vcl: introduce BitmapSharpenFilter MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: Ib503efa3634b3a000261d2398d04f779079bfe3f Reviewed-on: https://gerrit.libreoffice.org/53129 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl --- include/vcl/BitmapSharpenFilter.hxx | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 include/vcl/BitmapSharpenFilter.hxx (limited to 'include/vcl/BitmapSharpenFilter.hxx') diff --git a/include/vcl/BitmapSharpenFilter.hxx b/include/vcl/BitmapSharpenFilter.hxx new file mode 100644 index 000000000000..7e965976d5e8 --- /dev/null +++ b/include/vcl/BitmapSharpenFilter.hxx @@ -0,0 +1,28 @@ +/* -*- 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/. + * + */ + +#ifndef INCLUDED_VCL_BITMAPSHARPENFILTER_HXX +#define INCLUDED_VCL_BITMAPSHARPENFILTER_HXX + +#include + +class VCL_DLLPUBLIC BitmapSharpenFilter : public BitmapConvolutionMatrixFilter +{ +public: + BitmapSharpenFilter() + { + const long pSharpenMatrix[] = { -1, -1, -1, -1, 16, -1, -1, -1, -1 }; + mpMatrix = &pSharpenMatrix[0]; + } +}; + +#endif + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ -- cgit