how can I save a file as .png format?
Afficher commentaires plus anciens
I have a folder with 20 files in .fig format, how can I save these files in .png format? (they have different names and I want the programm to save the files after some changes.
thanks
Réponses (2)
Azzi Abdelmalek
le 14 Jan 2014
f=dir('*.fig') % or adsd your folder
for k=1:numel(f)
name=f(k).name;
h=hgload(name);
new_name=strrep(name,'.fig','.png');
saveas(h,new_name);
close
end
David Sanchez
le 14 Jan 2014
h=plot(rand(10,1),rand(10,1))
saveas(h,'my_fig','fig'); % your figure is saves as *.fig
% code to print a saved *.fig into *.png
figure_handle = openfig('my_fig.fig');
print(figure_handle,'-dpng','my_fig.png')
1 commentaire
Mohammad
le 14 Jan 2014
Catégories
En savoir plus sur Printing and Saving dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!