// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown * Ted Gould * * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "extension/effect.h" #include "extension/system.h" #include "gaussianBlur.h" #include namespace Inkscape { namespace Extension { namespace Internal { namespace Bitmap { void GaussianBlur::applyEffect(Magick::Image* image) { image->gaussianBlur(_width, _sigma); } void GaussianBlur::refreshParameters(Inkscape::Extension::Effect* module) { _width = module->get_param_float("width"); _sigma = module->get_param_float("sigma"); } #include "../clear-n_.h" void GaussianBlur::init() { // clang-format off Inkscape::Extension::build_from_mem( "\n" "" N_("Gaussian Blur") "\n" "org.inkscape.effect.bitmap.gaussianBlur\n" "5.0\n" "5.0\n" "\n" "all\n" "\n" "\n" "\n" "" N_("Gaussian blur selected bitmap(s)") "\n" "\n" "\n", new GaussianBlur()); // clang-format on } }; /* namespace Bitmap */ }; /* namespace Internal */ }; /* namespace Extension */ }; /* namespace Inkscape */