png to tif convertion
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Farjana Yeasmin
el 30 de Nov. de 2014
Comentada: Image Analyst
el 1 de Dic. de 2014
how can i convert png image into tif image
0 comentarios
Respuesta aceptada
Mohammad Abouali
el 1 de Dic. de 2014
I=imread('image.png');
imwrite(I,'image.tif','tif');
1 comentario
Image Analyst
el 1 de Dic. de 2014
By the way, you don't need the last tif argument - it figures it out from the filename.
Más respuestas (1)
Guillaume
el 30 de Nov. de 2014
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 comentarios
Ver también
Categorías
Más información sobre Import, Export, and Conversion en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!