Issue with saving the image

4 次查看(过去 30 天)
I want to save it to my folder and used the following function
saveas(f,'Figure_001','bmp')
The issue with this line of code is that I want to see bigger image but this function saving samll image. Is there a way to save image with higher dimensions? I am attaching the picture in the way I want to see and what I got in the .zip file

采纳的回答

Voss
Voss 2024-2-15
编辑:Voss 2024-2-15
You might try making the figure larger before saving, e.g.:
f.WindowState = 'Maximized';
saveas(f,'Figure_001','bmp')
and/or you can use exportgraphics, and see if that gives you a better result than saveas does (however, exportgraphics does not appear to support bmp format).
  1 个评论
Image Analyst
Image Analyst 2024-2-15
If there are graphics in the overlay you can save the figure, but if there are no graphics in the overlay and it's just purely an image then you should use imwrite instead.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Printing and Saving 的更多信息

产品


版本

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by