首页 > 代码库 > matlab 透明图像 fig 保存
matlab 透明图像 fig 保存
在网上发现如下codes,可以生成透明图形。
%
If you ever wondered how to get a matlab figure transparent
(particularly usefull when you export it to formats that feature
transparency, like eps, gif, png, etc.), here is how you do it:
% you created a figure and it is "current". % the following, you could have guessed
set(gcf,‘color‘,‘none‘);
set(gca,‘color‘,‘none‘);
% but this following little detail took me ages to figure out
set(gcf,‘InvertHardCopy‘,‘off‘);
打开一个.fig的文件,在command中运行上面三行命令 Edit->Copy Figure->在powerpoint中粘贴,就得到背景透明的图片。
matlab 透明图像 fig 保存
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。