MATLAB 导出可编辑的eps格式图像

时间:2024-02-22 10:18:31

任务描述:部分期刊要求提交可编辑的eps格式图像,方便美工编辑对图像进行美化

我试了直接print或者在figure窗口导出,发现导出的文件放到Adobe AI中并不能编辑,经Google找到解决办法:

%EPS
exportgraphics(gcf,'myVectorFile.eps','BackgroundColor','none','ContentType','vector')
%PDF
exportgraphics(gcf,'myVectorFile.pdf','BackgroundColor','none','ContentType','vector')

在这里插入图片描述

代码来自:Why does MATLAB not export EPS files properly?

祝大家龙年行大运!