vdr-plugin-tvguide/imageloader.h

29 lines
702 B
C
Raw Normal View History

2013-01-17 13:16:44 +01:00
#ifndef _TVGUIDE_IMAGELOADER_H
#define _TVGUIDE_IMAGELOADER_H
#define X_DISPLAY_MISSING
#include <vdr/osd.h>
#include <vdr/skins.h>
#include <Magick++.h>
using namespace Magick;
class cImageLoader {
public:
cImageLoader();
~cImageLoader();
cImage GetImage();
bool LoadLogo(const char *logo, int width, int height);
bool LoadEPGImage(int eventID);
bool LoadAdditionalEPGImage(cString name);
bool DrawBackground(tColor back, tColor blend, int width, int height);
2013-01-17 13:16:44 +01:00
private:
Image buffer;
Color Argb2Color(tColor col);
void toLowerCase(std::string &str);
bool LoadImage(cString FileName, cString Path, cString Extension);
2013-01-17 13:16:44 +01:00
};
#endif //_TVGUIDE_IMAGELOADER_H