png to tif convertion
14 次查看(过去 30 天)
显示 更早的评论
how can i convert png image into tif image
0 个评论
采纳的回答
Mohammad Abouali
2014-12-1
I=imread('image.png');
imwrite(I,'image.tif','tif');
1 个评论
Image Analyst
2014-12-1
By the way, you don't need the last tif argument - it figures it out from the filename.
更多回答(1 个)
Guillaume
2014-11-30
This is one of those cases where matlab is probably not the best tool. There are a numbers of more suited programs for that, irfanview, imagemagick, xnview can all do it and in batch as well.
If you want to do this in matlab, use imread and imwrite
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Import, Export, and Conversion 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!