Code

r16217@tres: ted | 2007-08-10 10:36:27 -0700
[inkscape.git] / src / extension / internal / bitmap / colorize.h
1 /*
2  * Authors:
3  *   Christopher Brown <audiere@gmail.com>
4  *   Ted Gould <ted@gould.cx>
5  *
6  * Copyright (C) 2007 Authors
7  *
8  * Released under GNU GPL, read the file 'COPYING' for more information
9  */
11 #include "imagemagick.h"
13 namespace Inkscape {
14 namespace Extension {
15 namespace Internal {
16 namespace Bitmap {
18 class Colorize : public ImageMagick {
19 private:
20         SPColor* _color;
21         int _opacity;
23 public:
24     void applyEffect(Magick::Image *image);
25         void refreshParameters(Inkscape::Extension::Effect *module);
27     static void init (void);
28 };
30 }; /* namespace Bitmap */
31 }; /* namespace Internal */
32 }; /* namespace Extension */
33 }; /* namespace Inkscape */