mirror of
https://github.com/yuzu-emu/FasTC
synced 2024-11-22 22:13:46 +00:00
37 lines
832 B
C++
37 lines
832 B
C++
#ifedef _IMAGE_FILE_H_
|
|
#define _IMAGE_FILE_H_
|
|
|
|
enum EImageFileFormat {
|
|
eFileFormat_PNG,
|
|
|
|
kNumImageFileFormats
|
|
};
|
|
|
|
class ImageFile {
|
|
|
|
public:
|
|
|
|
ImageFile(const char *filename);
|
|
ImageFile(const char *filename, EImageFileFormat format);
|
|
~ImageFile();
|
|
|
|
void GetWidth() const { return m_Width; }
|
|
void GetHeight() const { return m_Height; }
|
|
const unsigned char *GetPixels() const { return m_PixelData; }
|
|
|
|
private:
|
|
unsigned int m_Handle;
|
|
unsigned int m_Width;
|
|
unsigned int m_Height;
|
|
unsigned char *m_PixelData;
|
|
const EImageFileFormat m_FileFormat;
|
|
|
|
static unsigned char *ReadFileData(const char *filename);
|
|
static EFileFormat DetectFileFormat(const char *filename);
|
|
|
|
bool LoadImage(const unsigned char *rawImageData);
|
|
bool LoadPNGImage(const unsigned char *rawImageData);
|
|
};
|
|
|
|
|
|
#endif // _IMAGE_FILE_H_
|