在 MATLAB 中保存轴图像

发布于 2024-12-11 11:14:04 字数 314 浏览 0 评论 0原文

当我单击“应用”按钮时,我会在名为 newIM 的轴中生成一张图片。 现在,当我按下“保存”按钮时,我想将这张新图片保存为 jpg、gif、bmp 或其他文件。

这就是我所拥有的:

pathname = 'D:\pictures\';
filename = 'Test.bmp';
both = strcat(pathname, filename);
imshow(both);
imsave('test','*.jpg')

但这仅适用于 Test.bmp,不适用于 newIM 中的图片。

我怎样才能使这个变量?

I generate a picture in an axes that is called newIM when I click on the apply button.
Now, I want to save this new picture in a jpg, gif, bmp or whatever file when I push the save button.

This is what I had:

pathname = 'D:\pictures\';
filename = 'Test.bmp';
both = strcat(pathname, filename);
imshow(both);
imsave('test','*.jpg')

But this is only for a Test.bmp and not for the picture in newIM.

How can I make this variable?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

财迷小姐 2024-12-18 11:14:04

使用 getfame:

F = getframe(gcf);
image(F.cdata);
imwrite(F.cdata, 'file.jpg');

Use getfame:

F = getframe(gcf);
image(F.cdata);
imwrite(F.cdata, 'file.jpg');
漆黑的白昼 2024-12-18 11:14:04

如果它在某些 gui 或其他图中,我通常使用 copyobj 复制包含图片的轴并将它们添加到新的(通常是隐藏的)图形窗口中。

If it's in some gui or other plots I usually use copyobj to copy the axes containing the picture and add them to a new (usually hidden) figure window.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文