vdr-plugin-skindesigner/libcore/imageloader.h

61 lines
1.4 KiB
C
Raw Normal View History

2014-09-27 09:25:14 +02:00
#ifndef __NOPACITY_IMAGELOADER_H
#define __NOPACITY_IMAGELOADER_H
#define X_DISPLAY_MISSING
#include <cairo.h>
2014-10-30 21:07:26 +01:00
#include <librsvg/rsvg.h>
2014-09-27 09:25:14 +02:00
#include <vdr/osd.h>
#include <vdr/tools.h>
2014-09-27 09:25:14 +02:00
//
// Image importers
//
class cImageImporter {
public:
cImageImporter() {};
virtual ~cImageImporter() {};
virtual bool LoadImage(const char *path) {};
virtual void DrawToCairo(cairo_t *cr) {};
virtual void GetImageSize(int &width, int &height) {};
};
2014-09-27 09:25:14 +02:00
// Image importer for PNG
class cImageImporterPNG : public cImageImporter {
2014-09-27 09:25:14 +02:00
public:
cImageImporterPNG();
~cImageImporterPNG();
2014-10-28 16:54:37 +01:00
bool LoadImage(const char *path);
void DrawToCairo(cairo_t *cr);
void GetImageSize(int &width, int &height);
private:
cairo_surface_t *surface;
};
// Image importer for SVG
class cImageImporterSVG : public cImageImporter {
public:
2014-10-30 21:07:26 +01:00
cImageImporterSVG();
~cImageImporterSVG();
bool LoadImage(const char *path);
2014-10-30 21:07:26 +01:00
void DrawToCairo(cairo_t *cr);
void GetImageSize(int &width, int &height);
private:
2014-10-30 21:07:26 +01:00
RsvgHandle *handle;
};
class cImageLoader {
2014-09-27 09:25:14 +02:00
private:
cImageImporter *importer = NULL;
public:
cImageLoader();
virtual ~cImageLoader();
cImage *CreateImage(int width, int height, bool preserveAspect = true);
2014-10-30 21:07:26 +01:00
bool LoadImage(std::string Path, std::string FileName, std::string Extension);
bool LoadImage(const char *fullpath);
void DeterminateChannelLogoSize(int &width, int &height);
2014-09-27 09:25:14 +02:00
};
#endif //__NOPACITY_IMAGELOADER_H