This commit is contained in:
John Cupitt 2009-03-24 15:25:33 +00:00
parent 5f567320d2
commit 223158822b
3 changed files with 5 additions and 2 deletions

View File

@ -176,7 +176,8 @@ public:
LABPACK = 2,
LABPACK_COMPRESSED = 3,
RGB_COMPRESSED = 4,
LUM_COMPRESSED = 5
LUM_COMPRESSED = 5,
RAD = 6
};
// Compression type

View File

@ -466,7 +466,7 @@ typedef struct {
#define IM_CODING_NONE (0)
#define IM_CODING_LABQ (2)
#define IM_CODING_RAD (4)
#define IM_CODING_RAD (6)
#define IM_IMAGE_SIZEOF_ELEMENT(I) ((I)->Bbits >> 3)
#define IM_IMAGE_SIZEOF_PEL(I) \

View File

@ -119,6 +119,8 @@ static const char *im_Coding[] = {
"COLQUANT8",
"IM_CODING_LABQ",
"IM_CODING_LABQ_COMPRESSED",
"RGB_COMPRESSED",
"LUM_COMPRESSED",
"IM_CODING_RAD"
};