フィルターのクリア

png to tif convertion

19 ビュー (過去 30 日間)
Farjana Yeasmin
Farjana Yeasmin 2014 年 11 月 30 日
コメント済み: Image Analyst 2014 年 12 月 1 日
how can i convert png image into tif image

採用された回答

Mohammad Abouali
Mohammad Abouali 2014 年 12 月 1 日
I=imread('image.png');
imwrite(I,'image.tif','tif');
  1 件のコメント
Image Analyst
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
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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by