Physical size of exportgraphics
48 次查看(过去 30 天)
显示 更早的评论
Hi all,
Is there a way to use exportgrapics and have the saved content in a specified physical dimensions?
Currently, I use exportgraphics, and save the figure content as a vector PDF. Then I use InkScape to actually adjust the PDF to a size (in mm) I need. Finally I save it as EPS and have it printed out.
How could I skip the need for InskScape and could save the image content from Matlab directly to a certain size EPS?
Thanks,
Tero
0 个评论
采纳的回答
Richard Quist
2021-12-29
编辑:Richard Quist
2021-12-29
exportgraphics does not currently support generating output to match a specified dimension.
If you would find this feature valuable I suggest contacting tech support and request that it be added, and provide information about what capabilities/options this should support.
Another option is to use the print command, and specify the desired output size using the figure's Paper* properties (PaperPosition, PaperUnits, PaperSize)
0 个评论
更多回答(1 个)
C
2022-8-24
编辑:C
2022-8-24
Hi there
I have done this by setting the figure properties prior to calling exportgraphics, e.g.
plot(xDat, yDat)
figH = gcf;
set(figH, 'Units', 'centimeters',...
'OuterPosition', [0 0 10 8])
exportgraphics(figH,...
'output.pdf',...
'BackgroundColor', 'none',...
'ContentType','vector');
where you can change 10 and 8 for the image width and height, respectively.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Printing and Saving 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!