dms::TIFFImage

Source Code

Class Specification

#include <dms/TIFFImage.h>

TIFFImage(char * filename=0);
void loadFile(char * filename);

Description

TIFFImage(char * filename)

If a file name is passed to the constructor, the given file is loaded. Otherwise, it defaults to an empty, 0x0 image.
Example:

TIFFImage image("bricks.tif");
void loadFile(char * filename)

Loads image data from the given tiff file.
Example:

TIFFImage image;
image.loadFile("bricks.tif");