png to tif convertion

조회 수: 15 (최근 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

카테고리

Help CenterFile Exchange에서 Import, Export, and Conversion에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by