// 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 "oilPaint.h" #include namespace Inkscape { namespace Extension { namespace Internal { namespace Bitmap { void OilPaint::applyEffect(Magick::Image* image) { image->oilPaint(_radius); } void OilPaint::refreshParameters(Inkscape::Extension::Effect* module) { _radius = module->get_param_int("radius"); } #include "../clear-n_.h" void OilPaint::init() { // clang-format off Inkscape::Extension::build_from_mem( "\n" "" N_("Oil Paint") "\n" "org.inkscape.effect.bitmap.oilPaint\n" "3\n" "\n" "all\n" "\n" "\n" "\n" "" N_("Stylize selected bitmap(s) so that they appear to be painted with oils") "\n" "\n" "\n", new OilPaint()); // clang-format on } }; /* namespace Bitmap */ }; /* namespace Internal */ }; /* namespace Extension */ }; /* namespace Inkscape */