// 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 "enhance.h" #include namespace Inkscape { namespace Extension { namespace Internal { namespace Bitmap { void Enhance::applyEffect(Magick::Image *image) { image->enhance(); } void Enhance::refreshParameters(Inkscape::Extension::Effect */*module*/) { } #include "../clear-n_.h" void Enhance::init() { // clang-format off Inkscape::Extension::build_from_mem( "\n" "" N_("Enhance") "\n" "org.inkscape.effect.bitmap.enhance\n" "\n" "all\n" "\n" "\n" "\n" "" N_("Enhance selected bitmap(s); minimize noise") "\n" "\n" "\n", new Enhance()); // clang-format on } }; /* namespace Bitmap */ }; /* namespace Internal */ }; /* namespace Extension */ }; /* namespace Inkscape */