about picture saving from figure
Mostrar comentarios más antiguos
I want to ask about the picture saving.
If I have picture that show by "matlab figure" then,I must save the picture
but,when I choose save button for xxx.bmp ,the picture is not clear.
could you give other ways for saving picture from the figure.
Thank!!
Respuestas (3)
Luffy
el 7 de Jul. de 2012
Editada: Walter Roberson
el 9 de Jul. de 2012
Do you need your figure to be only in bmp format,if not
h=figure;
plot(sind(1:360));
saveas(h,'picture','png') % it saves with file name picture.
1 comentario
Pan
el 7 de Jul. de 2012
Luffy
el 7 de Jul. de 2012
Editada: Walter Roberson
el 9 de Jul. de 2012
@Pan:
Say you hv to save 10 figures,
for ii = 1:10
h(ii)=figure;
end
% Now saving figures
for ii = 1:10
saveas(h(ii),sprintf('Fig%i',ii),'png');
end
5 comentarios
Pan
el 8 de Jul. de 2012
Pan
el 9 de Jul. de 2012
Walter Roberson
el 9 de Jul. de 2012
Editada: Walter Roberson
el 9 de Jul. de 2012
After the imshow()
saveas( f, sprintf('Fig%i',i), 'png');
and move the "f=f+1" to after that saveas()
Pan
el 9 de Jul. de 2012
Pan
el 10 de Jul. de 2012
Image Analyst
el 7 de Jul. de 2012
Editada: Image Analyst
el 7 de Jul. de 2012
0 votos
Categorías
Más información sobre Printing and Saving en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!