// 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 "modulate.h" #include namespace Inkscape { namespace Extension { namespace Internal { namespace Bitmap { void Modulate::applyEffect(Magick::Image* image) { double hue = (_hue * 200 / 360.0) + 100; image->modulate(_brightness, _saturation, hue); } void Modulate::refreshParameters(Inkscape::Extension::Effect* module) { _brightness = module->get_param_float("brightness"); _saturation = module->get_param_float("saturation"); _hue = module->get_param_float("hue"); } #include "../clear-n_.h" void Modulate::init() { // clang-format off Inkscape::Extension::build_from_mem( "\n" "" N_("HSB Adjust") "\n" "org.inkscape.effect.bitmap.modulate\n" "0\n" "100\n" "100\n" "\n" "all\n" "\n" "\n" "\n" "" N_("Adjust the amount of hue, saturation, and brightness in selected bitmap(s)") "\n" "\n" "\n", new Modulate()); // clang-format on } }; /* namespace Bitmap */ }; /* namespace Internal */ }; /* namespace Extension */ }; /* namespace Inkscape */