The OpenD Programming Language

ImageFormatPlugin

Undocumented in source.
nothrow @nogc @safe
struct ImageFormatPlugin {
LoadImageProc loadProc;
SaveImageProc saveProc;
DetectImageFormatProc detectProc;
}

Members

Variables

extensionList
const(char)* extensionList;

Comma-separated list of extension. A JPEG plugin would return "jpeg,jif,jfif".

format
const(char)* format;

Type string for the bitmap. For example, a plugin that loads BMPs returns the string "BMP".

mimeTypes
const(char)* mimeTypes;

MIME types, the first one being the best one.

Meta