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

74 visualizaciones (últimos 30 días)
chetan sagarnal
chetan sagarnal el 15 de Feb. de 2013
Comentada: Walter Roberson el 31 de Mzo. de 2017
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 .

Respuestas (3)

Jan
Jan el 15 de Feb. de 2013
Editada: Jan el 15 de Feb. de 2013
img = imread('FileName.jpg');
imwrite(img, 'FileName.tiff');

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

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

Iniciar sesión para comentar.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by