summaryrefslogtreecommitdiff
path: root/bitmap.h
diff options
context:
space:
mode:
authorlordjaxom <lordjaxom>2004-12-12 19:53:30 +0000
committerlordjaxom <lordjaxom>2004-12-12 19:53:30 +0000
commit3b0999969632e2820b846ca8adcef6b346ff7441 (patch)
tree1582ed7db886839ea06c226e228eade0516f60c2 /bitmap.h
parente4c359b5c303cecfc49fb82799805da9fee8dadb (diff)
downloadvdr-plugin-text2skin-3b0999969632e2820b846ca8adcef6b346ff7441.tar.gz
vdr-plugin-text2skin-3b0999969632e2820b846ca8adcef6b346ff7441.tar.bz2
1.0-pre3v1.0-pre3
Diffstat (limited to 'bitmap.h')
-rw-r--r--bitmap.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/bitmap.h b/bitmap.h
index af0fd42..632408e 100644
--- a/bitmap.h
+++ b/bitmap.h
@@ -22,7 +22,7 @@ private:
cText2SkinBitmap(void);
public:
- static cText2SkinBitmap *Load(const std::string &Filename, int Alpha = 0);
+ static cText2SkinBitmap *Load(const std::string &Filename, int Alpha = 0, int height = 0, int width = 0, int colors = 0);
static void ResetCache(void) { mCache.Reset(); }
static void FlushCache(void) { mCache.Flush(); }
@@ -35,10 +35,10 @@ public:
bool LoadXpm(const char *Filename);
#ifdef HAVE_IMLIB2
- bool LoadImlib(const char *Filename);
+ bool LoadImlib(const char *Filename,int height = 0, int width = 0, int colors = 0);
#endif
#ifdef HAVE_IMAGEMAGICK
- bool LoadMagick(const char *Filename);
+ bool LoadMagick(const char *Filename,int height = 0, int width = 0, int colors = 0);
#endif
};