// 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 "edge.h" #include namespace Inkscape { namespace Extension { namespace Internal { namespace Bitmap { void Edge::applyEffect(Magick::Image *image) { image->edge(_radius); } void Edge::refreshParameters(Inkscape::Extension::Effect *module) { _radius = module->get_param_int("radius"); } #include "../clear-n_.h" void Edge::init() { // clang-format off Inkscape::Extension::build_from_mem( "\n" "" N_("Edge") "\n" "org.inkscape.effect.bitmap.edge\n" "0\n" "\n" "all\n" "\n" "\n" "\n" "" N_("Highlight edges of selected bitmap(s)") "\n" "\n" "\n", new Edge()); // clang-format on } }; /* namespace Bitmap */ }; /* namespace Internal */ }; /* namespace Extension */ }; /* namespace Inkscape */