// 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 "charcoal.h" #include namespace Inkscape { namespace Extension { namespace Internal { namespace Bitmap { void Charcoal::applyEffect(Magick::Image* image) { image->charcoal(_radius, _sigma); } void Charcoal::refreshParameters(Inkscape::Extension::Effect* module) { _radius = module->get_param_float("radius"); _sigma = module->get_param_float("sigma"); } #include "../clear-n_.h" void Charcoal::init() { // clang-format off Inkscape::Extension::build_from_mem( "\n" "" N_("Charcoal") "\n" "org.inkscape.effect.bitmap.charcoal\n" "1\n" "0.5\n" "\n" "all\n" "\n" "\n" "\n" "" N_("Apply charcoal stylization to selected bitmap(s)") "\n" "\n" "\n", new Charcoal()); // clang-format on } }; /* namespace Bitmap */ }; /* namespace Internal */ }; /* namespace Extension */ }; /* namespace Inkscape */