summaryrefslogtreecommitdiff
path: root/libcore/imagemagickwrapper.h
diff options
context:
space:
mode:
authorlouis <louis.braun@gmx.de>2014-11-15 11:15:48 +0100
committerlouis <louis.braun@gmx.de>2014-11-15 11:15:48 +0100
commit0ed710a86884136a7bd772322f13f0b176a5dc22 (patch)
treecd4ae6f14b29988d35ce67acb9012c610348bc95 /libcore/imagemagickwrapper.h
parentf225c38103013faf38512cc61362cf9bb9088ba6 (diff)
parent7a69d868c422218817f1c92a6666ee6c83825d23 (diff)
downloadvdr-plugin-skindesigner-0.0.5.tar.gz
vdr-plugin-skindesigner-0.0.5.tar.bz2
Version 0.0.5 - added SVG Support0.0.5
Diffstat (limited to 'libcore/imagemagickwrapper.h')
-rw-r--r--libcore/imagemagickwrapper.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/libcore/imagemagickwrapper.h b/libcore/imagemagickwrapper.h
deleted file mode 100644
index 5f9901e..0000000
--- a/libcore/imagemagickwrapper.h
+++ /dev/null
@@ -1,28 +0,0 @@
-#ifndef __NOPACITY_IMAGEMAGICKWRAPPER_H
-#define __NOPACITY_IMAGEMAGICKWRAPPER_H
-
-#define X_DISPLAY_MISSING
-
-#include <Magick++.h>
-#include <vdr/osd.h>
-
-using namespace Magick;
-
-class cImageMagickWrapper {
-private:
- void CreateGradient(tColor back, tColor blend, int width, int height, double wfactor, double hfactor);
-public:
- cImageMagickWrapper();
- ~cImageMagickWrapper();
-protected:
- Image buffer;
- Color Argb2Color(tColor col);
- cImage *CreateImage(int width, int height, bool preserveAspect = true);
- cImage CreateImageCopy(void);
- bool LoadImage(std::string FileName, std::string Path, std::string Extension);
- bool LoadImage(const char *fullpath);
- void CreateBackground(tColor back, tColor blend, int width, int height, bool mirror = false);
- void CreateBackgroundReverse(tColor back, tColor blend, int width, int height);
-};
-
-#endif //__NOPACITY_IMAGEMAGICKWRAPPER_H