フィルターのクリア

Issue with saving the image

4 ビュー (過去 30 日間)
Rohit Thokala
Rohit Thokala 2024 年 2 月 15 日
コメント済み: Image Analyst 2024 年 2 月 15 日
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 Center および File ExchangePrinting and Saving についてさらに検索

製品


リリース

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by