Code: Select all
typedef struct {
unsigned char red[256];
unsigned char green[256];
unsigned char blue[256];
} GFP_COLORMAP;
I changed it to:
Code: Select all
tagGFP_COLORMAPItem = packed record
R:Byte;
G:Byte;
B:Byte;
end;
tagGFP_COLORMAP = packed record
Colors:array[0..255] of tagGFP_COLORMAPItem;
end;
I used a 4bit gray muilty page image format on pda,and use lcd like color pattle in plugins codes, and found this bug.
PS: Is there more detailed sdk codes avalible for download?
I can't use the muility page/layer feather,can't display an option page like others plugins, and can't make the image animated.