- detect_tga
bool detect_tga(Reader stream)
Undocumented in source. Be warned that the author may not have intended to support it.
- read_tga
IFImage read_tga(char[] filename, long req_chans)
Reads a TGA image. req_chans defines the format of returned image
(you can use ColFmt here).
- read_tga
IFImage read_tga(Reader stream, long req_chans)
Undocumented in source. Be warned that the author may not have intended to support it.
- read_tga_from_mem
IFImage read_tga_from_mem(ubyte[] source, long req_chans)
Reads an image from a buffer containing a TGA image. req_chans defines the
format of returned image (you can use ColFmt here).
- read_tga_header
TGA_Header read_tga_header(char[] filename)
Returns the header of a TGA file.
- read_tga_header_from_mem
TGA_Header read_tga_header_from_mem(ubyte[] source)
Reads the image header from a buffer containing a TGA image.
- read_tga_info
void read_tga_info(char[] filename, int w, int h, int chans)
Returns width, height and color format information via w, h and chans.
- read_tga_info
void read_tga_info(Reader stream, int w, int h, int chans)
Undocumented in source. Be warned that the author may not have intended to support it.
- read_tga_info_from_mem
void read_tga_info_from_mem(ubyte[] source, int w, int h, int chans)
Returns width, height and color format information via w, h and chans.
- write_tga
void write_tga(char[] file, long w, long h, ubyte[] data, long tgt_chans)
Writes a TGA image into a file.
- write_tga_to_mem
ubyte[] write_tga_to_mem(long w, long h, ubyte[] data, long tgt_chans)
Writes a TGA image into a buffer.