00001 #ifndef X3DTK_JPGIMAGETYPE_H 00002 #define X3DTK_JPGIMAGETYPE_H 00003 00004 #include "Platform.h" 00005 00006 namespace X3DTK { 00007 00008 class Image; 00009 00016 class JPGImageType 00017 { 00018 public: 00020 JPGImageType(); 00021 00023 static bool load(const char *fileName, Image *image); 00025 static bool save(const char *fileName, Image *image, float quality); 00026 00027 }; 00028 00029 } 00030 00031 #endif