How can i change image file format from .jpg to .tiff?
조회 수: 13 (최근 30일)
이전 댓글 표시
I am coding for image transformation. I want to convert file format of image from JPEG to TIFF or PNG and viceversa. so pls help me in command or by program code .
댓글 수: 0
답변 (3개)
Jan
2013년 2월 15일
편집: Jan
2013년 2월 15일
img = imread('FileName.jpg');
imwrite(img, 'FileName.tiff');
댓글 수: 2
venkata ravi vusa
2017년 3월 31일
How can we do that by using loop instead of "IMWRITE" command in MATLAB
Sabarinathan Vadivelu
2013년 2월 15일
Use imwrite command to write images in the required format.
댓글 수: 0
Fatma Buharoon
2016년 4월 11일
but it says: Error using imwrite Too many output arguments. So how to fix it??
댓글 수: 1
Walter Roberson
2016년 4월 11일
imwrite() does not return anything. You cannot assign the result of imwrite() to anything.
참고 항목
카테고리
Help Center 및 File Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!