png to tif convertion
7 ビュー (過去 30 日間)
古いコメントを表示
Farjana Yeasmin
2014 年 11 月 30 日
コメント済み: Image Analyst
2014 年 12 月 1 日
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!