00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef EASYSOK_IMAGE_STORER_INC_GUARD_H
00022 #define EASYSOK_IMAGE_STORER_INC_GUARD_H
00023
00024
00025 #include <qimage.h>
00026
00027
00028 class Map;
00029 class QIODevice;
00030 class Theme;
00031
00032
00033
00034
00042 class ImageStorer
00043 {
00044 public:
00045
00060 static bool store(QIODevice * device, char const * format, Map const & map, int piece_size,
00061 Theme const & theme, int direction, bool use_background, bool low_quality);
00062
00063
00068 static QImage createImage(Map const & map, int piece_size, Theme const & theme,
00069 int direction, bool use_background, bool low_quality);
00070 };
00071
00072
00073 #endif