summaryrefslogtreecommitdiffstats
path: root/src/extension/internal/bitmap/modulate.h
blob: f7c6fe9a59b1801f15613a2fae393a1e299c5bbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
 * Copyright (C) 2007 Authors:
 *   Christopher Brown <audiere@gmail.com>
 *   Ted Gould <ted@gould.cx>
 *   
 * Released under GNU GPL, read the file 'COPYING' for more information
 */

#include "imagemagick.h"

namespace Inkscape {
namespace Extension {
namespace Internal {
namespace Bitmap {

class Modulate : public ImageMagick
{
private:
	float _brightness;
	float _saturation;
	float _hue;
public:
  void applyEffect(Magick::Image *image);
  void refreshParameters(Inkscape::Extension::Effect *module);
  static void init(void);
};

}; /* namespace Bitmap */
}; /* namespace Internal */
}; /* namespace Extension */
}; /* namespace Inkscape */