png to tif convertion
조회 수: 15 (최근 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!