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