How can i change image file format from .jpg to .tiff?

67 views (last 30 days)
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 .

Answers (3)

Jan
Jan on 15 Feb 2013
Edited: Jan on 15 Feb 2013
img = imread('FileName.jpg');
imwrite(img, 'FileName.tiff');

Sabarinathan Vadivelu
Sabarinathan Vadivelu on 15 Feb 2013
Use imwrite command to write images in the required format.

Fatma Buharoon
Fatma Buharoon on 11 Apr 2016
but it says: Error using imwrite Too many output arguments. So how to fix it??
  1 Comment
Walter Roberson
Walter Roberson on 11 Apr 2016
imwrite() does not return anything. You cannot assign the result of imwrite() to anything.

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!