vdr-plugin-tvguide/imageloader.h

32 lines
856 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);
2013-08-25 13:57:10 +02:00
bool LoadPoster(const char *poster, int width, int height);
2013-07-09 00:17:42 +02:00
bool LoadIcon(const char *cIcon, int size);
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-08-25 13:57:10 +02:00
bool LoadImage(const char *fullpath);
2013-01-17 13:16:44 +01:00
};
#endif //_TVGUIDE_IMAGELOADER_H