matlab中print保存生成的图片时保存路径是怎么设定的?一般都是自动保存到程序文件所在的文件夹中

怎样才能让print将图片保存到一个特定的文件夹呢?
2025-01-06 16:53:52
推荐回答(2个)
回答1:

例子:
h = figure;
figure(h);
你画了你的图;
print(h,'-djpeg','C:\Image1.jpg');
这样图片就保存到了C盘取名为image1。格式为JPG。
你可以用doc print看一下matlab自带的介绍。解释的很详细。

回答2:

若是仅仅保存在电脑中,可用saveas
set(gcf,'Renderer','zbuffer');%取句柄
saveas(gcf,strcat('路径','.jpg'));