フィルターのクリア

Save current figure without axis, axis label and other border areas.

24 ビュー (過去 30 日間)
ac_bm_mat
ac_bm_mat 2022 年 5 月 3 日
編集済み: ac_bm_mat 2022 年 5 月 3 日
How to save current figure without axis, axis label and other white margin spaces around the figure. I don't have direct access to the matrix which is being plotted. So I want to use something like this:
saveas(gcf, "xyz.png");
but additional spaces and axis labels are also coming into it. I want these to be removed. I want to save only the actual plot area.

採用された回答

Matt J
Matt J 2022 年 5 月 3 日
編集済み: Matt J 2022 年 5 月 3 日
I don't have direct access to the matrix which is being plotted.
Yes, you do. The axes children will always contain the data that is being plotted. So, the easiest would be to replot the figure with,
axis off
export_graphics(gcf, "xyz.png")
A less graceful alternative would be to use export_fig, downloadable from,
which let's you specify the amount of cropping of the exported image. Choose the cropping just right and you will clip away the axis markings.
  3 件のコメント
Matt J
Matt J 2022 年 5 月 3 日
編集済み: Matt J 2022 年 5 月 3 日
With which of the two solutions I mentioned? With export_fig, all white space will be removed by default and you have input switches to adjust the amount of cropping if you wish.
ac_bm_mat
ac_bm_mat 2022 年 5 月 3 日
The export_fig from github is working fine. Thank you.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAxis Labels についてさらに検索

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by