aboutsummaryrefslogtreecommitdiff
path: root/smelt/sdl/CxImage/ximaska.h
blob: ad3f598263a3a94cdb73d8c04dfd49b65c7c088b (plain) (blame)
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
36
37
38
39
40
41
42
43
44
/*
 * File:	ximaska.h
 * Purpose:	SKA Image Class Loader and Writer
 */
/* ==========================================================
 * CxImageSKA (c) 25/Sep/2007 Davide Pizzolato - www.xdp.it
 * For conditions of distribution and use, see copyright notice in ximage.h
 * ==========================================================
 */
#if !defined(__ximaSKA_h)
#define __ximaSKA_h

#include "ximage.h"

#if CXIMAGE_SUPPORT_SKA

class CxImageSKA: public CxImage
{
#pragma pack(1)
	typedef struct tagSkaHeader {
    uint16_t  Width;
    uint16_t  Height;
    uint8_t  BppExp;
    uint32_t dwUnknown;
} SKAHEADER;
#pragma pack()

public:
	CxImageSKA(): CxImage(CXIMAGE_FORMAT_SKA) {}

//	bool Load(const char * imageFileName){ return CxImage::Load(imageFileName,CXIMAGE_FORMAT_ICO);}
//	bool Save(const char * imageFileName){ return CxImage::Save(imageFileName,CXIMAGE_FORMAT_ICO);}
	bool Decode(CxFile * hFile);
	bool Decode(FILE *hFile) { CxIOFile file(hFile); return Decode(&file); }

#if CXIMAGE_SUPPORT_ENCODE
	bool Encode(CxFile * hFile);
	bool Encode(FILE *hFile) { CxIOFile file(hFile); return Encode(&file); }
#endif // CXIMAGE_SUPPORT_ENCODE
};

#endif

#endif