dlib.image.io

Load and save images

Modules

bmp
module dlib.image.io.bmp

Decode and encode BMP images

hdr
module dlib.image.io.hdr

Decode and encode Radiance HDR/RGBE images

jpeg
module dlib.image.io.jpeg

Decode JPEG images

png
module dlib.image.io.png

Decode and encode PNG/APNG images

tga
module dlib.image.io.tga

Decode JPEG images

utils
module dlib.image.io.utils

Image I/O utility functions

Public Imports

dlib.image.io.bmp
public import dlib.image.io.bmp;
dlib.image.io.hdr
public import dlib.image.io.hdr;
dlib.image.io.png
public import dlib.image.io.png;
dlib.image.io.tga
public import dlib.image.io.tga;
dlib.image.io.jpeg
public import dlib.image.io.jpeg;

Members

Classes

ImageLoadException
class ImageLoadException
Undocumented in source.

Functions

loadAnimatedImage
SuperAnimatedImage loadAnimatedImage(string filename)

Loads an animated image from file, selects decoder by filename extension

loadHDRImage
SuperImage loadHDRImage(string filename)

Loads an HDR image from file, selects decoder by filename extension

loadImage
SuperImage loadImage(string filename)

Loads an image from file, selects decoder by filename extension

saveAnimatedImage
void saveAnimatedImage(SuperAnimatedImage img, string filename)

Saves an animated image to file, selects encoder by filename extension

saveHDRImage
void saveHDRImage(SuperHDRImage img, string filename)

Saves an HDR to file, selects encoder by filename extension

saveImage
void saveImage(SuperImage img, string filename)

Saves an image to file, selects encoder by filename extension

Meta

Authors

Timur Gafarov, Martin Cejp