blob: 8a8223cc167b1c05697812dd47421dd113bb018b (
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
|
/*
* GraphLCD graphics library
*
* extformats.h - loading and saving of external formats (via ImageMagick)
*
* based on bitmap.[ch] from text2skin: http://projects.vdr-developer.org/projects/show/plg-text2skin
*
* This file is released under the GNU General Public License. Refer
* to the COPYING file distributed with this package.
*
* (c) 2011 Wolfgang Astleitner <mrwastl AT users sourceforge net>
*/
#ifndef _GLCDGRAPHICS_EXTFORMATS_H_
#define _GLCDGRAPHICS_EXTFORMATS_H_
#include "imagefile.h"
namespace GLCD
{
class cImage;
class cExtFormatFile : public cImageFile
{
public:
cExtFormatFile();
virtual ~cExtFormatFile();
virtual bool Load(cImage & image, const std::string & fileName);
virtual bool Save(cImage & image, const std::string & fileName);
};
} // end of namespace
#endif
|