How can I print only the axes in gui to pdf?
6 次查看(过去 30 天)
显示 更早的评论
Hi, I made a GUI using GUIDE.
The figure has an axes and I want to print it only to pdf. How can I do it?
When I print it, whole figure is printed which means the pdf includes other buttons and edit texts and so on.
0 个评论
回答(1 个)
Kevin Chng
2018-12-6
编辑:Kevin Chng
2018-12-6
Hi,
Refer to this link, so far the best solution i have tried is the solution recommended by Joost.
I extracted his solution from there and paste here :
% Create a temporary figure with axes.
fig = figure;
fig.Visible = 'off';
figAxes = axes(fig);
% Copy all UIAxes children, take over axes limits and aspect ratio.
allChildren = app.UIAxes.XAxis.Parent.Children;
copyobj(allChildren, figAxes)
figAxes.XLim = app.UIAxes.XLim;
figAxes.YLim = app.UIAxes.YLim;
figAxes.ZLim = app.UIAxes.ZLim;
figAxes.DataAspectRatio = app.UIAxes.DataAspectRatio;
% Save as png and fig files.
saveas(fig, fileName, 'png');
savefig(fig, fileName);
% Delete the temporary figure.
delete(fig);
Since copyobj function is not supported in app designer, the workaround solution here is to create a hidden figure and an axes in the figure. Then copy the information from the axes of app designer to the axes in the figure. Save it as pdf, then delete.. if you have any difficulties in following his solution, let me know.
Let say you want to visualize the save file at the end, you may add
winopen('filename')
2 个评论
Kevin Chng
2018-12-10
try export_fig in the link above. Let me know if you have difficulties, then i try to help.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Migrate GUIDE Apps 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!