00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 void LoadLBM (const char *filename, byte **picture, byte **palette);
00026 void WriteLBMfile (const char *filename, byte *data, int width, int height
00027 , byte *palette);
00028 void LoadPCX (const char *filename, byte **picture, byte **palette, int *width, int *height);
00029 void WritePCXfile (const char *filename, byte *data, int width, int height
00030 , byte *palette);
00031
00032
00033 void Load256Image (const char *name, byte **pixels, byte **palette,
00034 int *width, int *height);
00035 void Save256Image (const char *name, byte *pixels, byte *palette,
00036 int width, int height);
00037
00038
00039 void LoadTGA (const char *filename, byte **pixels, int *width, int *height);
00040 void LoadTGABuffer ( byte *buffer, byte **pic, int *width, int *height);
00041 void WriteTGA (const char *filename, byte *data, int width, int height);
00042
00043 void Load32BitImage (const char *name, unsigned **pixels, int *width, int *height);
00044