FasTC/IO/include/ImageFile.h

39 lines
876 B
C
Raw Normal View History

#ifndef _IMAGE_FILE_H_
2012-08-26 18:46:47 +00:00
#define _IMAGE_FILE_H_
#include "ImageFileFormat.h"
// Forward declare
class Image;
class CompressedImage;
// Class definition
2012-08-26 18:46:47 +00:00
class ImageFile {
public:
ImageFile(const char *filename);
ImageFile(const char *filename, EImageFileFormat format);
2012-08-26 18:46:47 +00:00
~ImageFile();
unsigned int GetWidth() const { return m_Width; }
unsigned int GetHeight() const { return m_Height; }
CompressedImage *Compress(const SCompressionSettings &) const;
Image *GetImage() const { return m_Image; }
2012-08-26 18:46:47 +00:00
private:
unsigned int m_Handle;
unsigned int m_Width;
unsigned int m_Height;
Image *m_Image;
const EImageFileFormat m_FileFormat;
static unsigned char *ReadFileData(const char *filename);
static EImageFileFormat DetectFileFormat(const char *filename);
Image *LoadImage(const unsigned char *rawImageData) const;
2012-08-26 18:46:47 +00:00
};
#endif // _IMAGE_FILE_H_