Main Content

close

Close Tiff object

Syntax

Description

example

close(t) closes a Tiff object.

Examples

collapse all

Create a Tiff object for a file, and then close it.

t = Tiff('example.tif','r');
close(t);

Input Arguments

collapse all

Tiff object representing a TIFF file. Use the Tiff function to create the object.

Algorithms

collapse all

References

This function corresponds to the TIFFClose function in the LibTIFF C API. To use this function, you must be familiar with the TIFF specification and technical notes. View this documentation at LibTIFF - TIFF Library and Utilities.

Version History

Introduced in R2009b