Code

use the same steps to figure out dir for bitmap copy as in export dialog
[inkscape.git] / src / extension / internal / bitmap / contrast.cpp
1 /*
2  * Copyright (C) 2007 Authors:
3  *   Christopher Brown <audiere@gmail.com>
4  *   Ted Gould <ted@gould.cx>
5  *
6  * Released under GNU GPL, read the file 'COPYING' for more information
7  */
9 #include "extension/effect.h"
10 #include "extension/system.h"
12 #include "contrast.h"
14 namespace Inkscape {
15 namespace Extension {
16 namespace Internal {
17 namespace Bitmap {
18         
19 void
20 Contrast::applyEffect(Magick::Image *image) {
21         image->contrast(_sharpen);
22 }
24 void
25 Contrast::refreshParameters(Inkscape::Extension::Effect *module) {      
26         _sharpen = module->get_param_int("sharpen");
27 }
29 #include "../clear-n_.h"
31 void
32 Contrast::init(void)
33 {
34         Inkscape::Extension::build_from_mem(
35                 "<inkscape-extension xmlns=\"" INKSCAPE_EXTENSION_URI "\">\n"
36                         "<name>" N_("Contrast") "</name>\n"
37                         "<id>org.inkscape.effect.bitmap.contrast</id>\n"
38                         "<param name=\"sharpen\" gui-text=\"" N_("Sharpen") "\" type=\"int\" min=\"0\" max=\"100\">1</param>\n"
39                         "<effect>\n"
40                                 "<object-type>all</object-type>\n"
41                                 "<effects-menu>\n"
42                                         "<submenu name=\"" N_("Raster") "\" />\n"
43                                 "</effects-menu>\n"
44                                 "<menu-tip>" N_("Enhance intensity differences in selected bitmap(s).") "</menu-tip>\n"
45                         "</effect>\n"
46                 "</inkscape-extension>\n", new Contrast());
47 }
49 }; /* namespace Bitmap */
50 }; /* namespace Internal */
51 }; /* namespace Extension */
52 }; /* namespace Inkscape */