1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  * Copyright (C) 2007 Authors:
4  *   Christopher Brown <audiere@gmail.com>
5  *   Ted Gould <ted@gould.cx>
6  *
7  * Released under GNU GPL v2+, read the file 'COPYING' for more information.
8  */
9 
10 #include "imagemagick.h"
11 
12 namespace Inkscape {
13 namespace Extension {
14 namespace Internal {
15 namespace Bitmap {
16 
17 class Spread : public ImageMagick
18 {
19 private:
20 	int _amount;
21 public:
22 	void applyEffect(Magick::Image *image) override;
23 	void refreshParameters(Inkscape::Extension::Effect *module) override;
24 	static void init();
25 };
26 
27 }; /* namespace Bitmap */
28 }; /* namespace Internal */
29 }; /* namespace Extension */
30 }; /* namespace Inkscape */
31