码迷,mamicode.com
首页 > 其他好文 > 详细

matlab将当前坐标轴图像以指定尺寸高清输出

时间:2020-04-10 11:50:49      阅读:95      评论:0      收藏:0      [点我收藏+]

标签:ima   href   rpo   清晰度   run   psc   tps   time   unit   

基于图像窗口设置来指定输出图像大小和清晰度的方式,在网上很多。

这里重点介绍以编程的方式将坐标轴中图像输出的指定文件夹的方法。


 

来源:的个人主页 https://blog.csdn.net/iam3mjun/article/details/52015868

 

Matlab之图片存储终极命令 print

前阵子搞什么矢量图的,发现之前常用的saveas啦imwrite啦都不好还是print最高级,最万能可以保存各种格式,指定图片大小、质量,还可以保存为矢量图,批量存储也不在话下,可谓无往而不利如果文件名小,可以用print -fhandle -rresolution -dfileformat filename。

例如print -f2 -r300 -djpeg myfigure 将句柄为2的图像生成myfigure.jpg 文件,分辨率 dpi300。

如果要求矢量图 可以用 -depsc 彩图 ai可以打开如果要批量制图,参考如下循环流程

================================================

for kk = 1:10

%...生成图像...

% 如果需要调整图像大小

% 在存储前使用% set(handle,‘Position‘,[left, bottom, width, height])% 例如 set(gca, ‘Position‘,[80,100,800,600])...print(‘-r150‘,‘-depsc‘,[‘d:\image\myfigure‘,sprintf(‘%02d‘,kk)])

end

================================================

print 调整图像大小的命令

默认状态下打印大小为[0.25 2.5 8.0 6.0] in inches

调整命令三行连用

set(gcf, ‘PaperPositionMode‘, ‘manual‘);set(gcf, ‘PaperUnits‘, ‘inches‘);set(gcf, ‘PaperPosition‘, [2 1 4 2]);

 

units: inches,centimeters, normalized, points

matlab将当前坐标轴图像以指定尺寸高清输出

标签:ima   href   rpo   清晰度   run   psc   tps   time   unit   

原文地址:https://www.cnblogs.com/yuweng1689/p/12672273.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!