summaryrefslogtreecommitdiff
path: root/imageloader.h
blob: 27b90d9e2e27f3eb88c2d9c1dcc993d3e3abf3a7 (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
35
36
#ifndef __NOPACITY_IMAGELOADER_H
#define __NOPACITY_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 LoadIcon(const char *cIcon, int size);
    bool LoadIcon(const char *cIcon, int width, int height, bool preserveAspect = true);
    bool LoadEPGImage(int eventID);
    bool LoadAdditionalEPGImage(cString name);
    bool LoadRecordingImage(cString Path);
    bool LoadAdditionalRecordingImage(cString path, cString name);
    bool LoadPoster(const char *poster, int width, int height);
    void DrawBackground(tColor back, tColor blend, int width, int height, bool mirror = false);
    void DrawBackground2(tColor back, tColor blend, int width, int height);
private:
    Image buffer;
    Color Argb2Color(tColor col);
    void toLowerCase(std::string &str);
    bool LoadImage(cString FileName, cString Path, cString Extension);
    bool LoadImage(const char *fullpath);
    bool FirstImageInFolder(cString Path, cString Extension, cString *recImage);
};

#endif //__NOPACITY_IMAGELOADER_H