ImageLoadIO

Interface for loading images in varying formats, like PNG or JPG, into raw Image.

@safe
interface ImageLoadIO : IO {}

Members

Functions

loadImage
Image loadImage(const(ubyte)[] image)

Load an image from raw bytes.

Inherited Members

From IO

opEquals
bool opEquals(Object )
Undocumented in source.
loadTo
void loadTo(T resource)

Load a resource by reference. This is the same as Node.load.

Meta