Export image to TIF or TIFF file of selected data type

A supplement to IMWRITE to write to TIF files of data types beyond int16.
1.9K Downloads
Updated 24 Feb 2011

View License

IMWRITE2TIF Write image to tif file with specified datatype.

IMWRITE2TIF(IMGDATA,HEADER,IMFILE,DATATYPE)exports IMGDATA with HEADER to TIF file named IMFILE. HEADER is usally obtained by IMFINFO from original image file, and it can also be left empty. String DATATYPE specifies data type for the export. Supported data types include logical, uint8, int8, uint16, int16, uint32, int32, uint64, int64, single and double.

IMWRITE2TIF(IMGDATA,HEADER,IMFILE,DATATYPE,TAG NAME1,TAG VALUE1,TAG NAME2,TAG VALUE2, ...) writes with specified Matlab supported TIF tag values. These new tag values override those already defined in HEADER.

Note 1:
to avoid errors such as '??? Error using ==> tifflib The value for MaxSampleValue must be ...', overide tag MaxSampleValue by Matlab supported values. Or simply remove the tag from HEADER.

Note 2:
Overwriting of the existing image files is not checked. Be cautious with the export image file name.

Example 1:
imgdata = imread('ngc6543a.jpg');
header = imfinfo('ngc6543a.jpg');
imwrite2tif(imgdata,header,'new_ngc6543a.tif','uint8');

Example 2:
imgdata = imread('mri.tif');
imwrite2tif(imgdata,[],'new_mri.tif','int32','Copyright','MRI','Compression',1);

More information can be found by searching for 'Exporting Image Data and Metadata to TIFF Files' in Matlab Help.

Cite As

Zhang Jiang (2024). Export image to TIF or TIFF file of selected data type (https://www.mathworks.com/matlabcentral/fileexchange/30519-export-image-to-tif-or-tiff-file-of-selected-data-type), MATLAB Central File Exchange. Retrieved .

MATLAB Release Compatibility
Created with R2010b
Compatible with any release
Platform Compatibility
Windows macOS Linux

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Version Published Release Notes
1.0.0.0