png to tif convertion
15 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Farjana Yeasmin
le 30 Nov 2014
Commenté : Image Analyst
le 1 Déc 2014
how can i convert png image into tif image
0 commentaires
Réponse acceptée
Mohammad Abouali
le 1 Déc 2014
I=imread('image.png');
imwrite(I,'image.tif','tif');
1 commentaire
Image Analyst
le 1 Déc 2014
By the way, you don't need the last tif argument - it figures it out from the filename.
Plus de réponses (1)
Guillaume
le 30 Nov 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 commentaires
Voir également
Catégories
En savoir plus sur Import, Export, and Conversion dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!