blob: ce9b92797e02e4e8a3c710b2da74df9381e2af15 (
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
32
33
34
|
/*
* Copyright (C) 2010 Authors:
* Christopher Brown <audiere@gmail.com>
* Ted Gould <ted@gould.cx>
* Nicolas Dufour <nicoduf@yahoo.fr>
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include "imagemagick.h"
namespace Inkscape {
namespace Extension {
namespace Internal {
namespace Bitmap {
class Crop : public ImageMagick
{
private:
int _top;
int _bottom;
int _left;
int _right;
public:
void applyEffect(Magick::Image *image);
void postEffect(Magick::Image *image, SPItem *item);
void refreshParameters(Inkscape::Extension::Effect *module);
static void init (void);
};
}; /* namespace Bitmap */
}; /* namespace Internal */
}; /* namespace Extension */
}; /* namespace Inkscape */
|