These are some examples of TIFF files. "TIFF" stands for "Tagged Image File Format". It is a popular format for encoding high resolution photographs or images.
IM(:,:,1) = red data;
IM(:,:,2) = green data;
IM(:,:,3) = blue data;
imwrite ( IM, 'file.tif', 'TIFF' )
.
[ X, map ] = capture ( figure_handle );
imwrite ( X, map, 'file.tif', 'TIFF' )
.
fig2dev -L tiff input.fig > output.tif
You can go up one level to the DATA page.