Matlab导出适合图片大小的PDF格式图片
Posted 吕小猪不坏
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Matlab导出适合图片大小的PDF格式图片相关的知识,希望对你有一定的参考价值。
代码
% 导出到pdf
set(gcf,'Units','Inches');
pos = get(gcf,'Position');
set(gcf,'PaperPositionMode','Auto','PaperUnits','Inches','PaperSize',[pos(3), pos(4)])
print(gcf,‘result_img.pdf’,'-dpdf','-r300')
close(gcf)
转载https://blog.csdn.net/huangzhywin/article/details/89240056
以上是关于Matlab导出适合图片大小的PDF格式图片的主要内容,如果未能解决你的问题,请参考以下文章