Export image to TIF or TIFF file of selected data type

版本 1.0.0.0 (137.6 KB) 作者: Zhang Jiang
A supplement to IMWRITE to write to TIF files of data types beyond int16.
1.9K 次下载
更新时间 2011/2/24

查看许可证

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.

引用格式

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. 检索来源 .

MATLAB 版本兼容性
创建方式 R2010b
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Image Data 的更多信息

Community Treasure Hunt

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

Start Hunting!
版本 已发布 发行说明
1.0.0.0