Export image to TIF or TIFF file of selected data type
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.
Cita come
Zhang Jiang (2025). Export image to TIF or TIFF file of selected data type (https://it.mathworks.com/matlabcentral/fileexchange/30519-export-image-to-tif-or-tiff-file-of-selected-data-type), MATLAB Central File Exchange. Recuperato .
Compatibilità della release di MATLAB
Compatibilità della piattaforma
Windows macOS LinuxCategorie
Tag
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Scopri Live Editor
Crea script con codice, output e testo formattato in un unico documento eseguibile.
| Versione | Pubblicato | Note della release | |
|---|---|---|---|
| 1.0.0.0 |
