exportgraphics: adding a margin

196 次查看(过去 30 天)
dormant
dormant 2021-6-21
Is it possible to add a margin to figures saved using the exportgraphics function?
It crops a tad too tightly for my needs.

回答(2 个)

Paul Wintz
Paul Wintz 2021-9-15
编辑:Paul Wintz 2021-11-18
You can force exportgraphics to export the entire figure by drawing an white rectange around it with the command
annotation('rectangle',[0 0 1 1],'Color','w');
To adjust the margins, change the dimensions [0 0 1 1].
As noted by @David Walwark in the comments, the plot will not be interactive while it is annotated. To restore interactivity, delete the annotation after calling exportgraphics.
a = annotation('rectangle',[0 0 1 1],'Color','w');
% -> Save figure here <-
delete(a)
  4 个评论
Bill Tubbs
Bill Tubbs 2023-3-23
编辑:Bill Tubbs 2023-3-23
This didn't work for me. Presumably when doing 2 subplots you need to apply this annotation to each subplot?
I tried adjusting the margins to [-0.05 -0.05 1.05 1.05] and it raises:
Error using annotation (line 116)
Position values must be between 0 and 1.
Alexander Moody
Alexander Moody 2023-8-28
Had the same issue... this worked for me, but I had to change the color of the annotation rectangle to something other than white for it to work.

请先登录,再进行评论。


Kiran Felix Robert
Kiran Felix Robert 2021-6-24
Hi Dormant,
If you are trying to export multiple sub-images/plots onto a single figure, you can explore the tiledlayout to introduce spacing using the 'TileSpacing' Name-Value pair.
  2 个评论
Paul Wintz
Paul Wintz 2021-9-15
This doesn't answer the question. How do we adjust the margins on the outside of a figure saved with exportgraphics?
Bill Tubbs
Bill Tubbs 2023-3-23
This worked for me. When I did my 2-plot figure using tiledlayout instead of subplots the outer margin was significantly wider.

请先登录,再进行评论。

类别

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

标签

产品


版本

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by