print a figure into PDF
34 次查看(过去 30 天)
显示 更早的评论
Hi,
I want to print a matlab .fig into .pdf, but only the center part of the figure is shown on the .pdf file. Do you know how to solve this?
Thanks!
2 个评论
Jan
2011-8-2
Please explain, which method you are using for printing: PRINT, the print-menu, saveas or a PDF printer driver?
采纳的回答
Jan
2011-9-14
I guess, that you have a fixed PaperPosition, which is outside the visible range. Try this:
figure('PaperPositionMode', 'auto');
plot(rand(10));
print(gcf, '-dpdf', 'test.pdf');
You can set the PaperPosition in the Print-GUI also.
更多回答(1 个)
Sreeram Mohan
2011-9-14
Have u tried out the file submission here ?
Seems like there is a programmatic way of achieving this
Thanks, Sreeram
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Specifying Target for Graphics Output 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!