www.gusucode.com > matlab 案例源码 matlab代码程序 > matlab/ReadaTileExample.m

    %% Read a Tile  

%% 
% Create a |Tiff| object associated with the example file, |example.tif|.
% Then, read the first tile of data. 
t = Tiff('example.tif','r');
data = readEncodedTile(t,1);
close(t)