can't save image with transparent background

조회 수: 31 (최근 30일)
Chong Hou
Chong Hou 2011년 4월 20일
댓글: Nicolette 2023년 3월 17일
I want to save some figure I draw into png format with transparent background. I set the background to transparent by using 'color' property and I do see the figure shown has a transparent background. The only problem is that when i save the image, the image background is not transparent any more (I put the image in a powerpoint to test the transparency). The code is as follow:
%SAVE IMAGE
image=gcf;
%set(image,'color','none');
saveas(image,'test','png');
Can anyone tell me what's wrong here and what I can do to correct this? Thanks!

답변 (3개)

Matt Fig
Matt Fig 2011년 4월 20일
I don't know what you are doing wrong but I rarely ever rely on MATLAB to get these kinds of things right. I use this instead: export_fig

Kaustubha Govind
Kaustubha Govind 2011년 4월 20일

cui,xingxing
cui,xingxing 2021년 8월 30일
since Matlab R2020a, use "exportgraphics", for example ,you can do like this
x = 0:.1:2*pi;
y = sin(x);
% save to transparented image
figure;
plot(x,y,'LineWidth',4);
set(gcf, 'color', 'none');
set(gca, 'color', 'none');
exportgraphics(gcf,'transparent.eps',... % since R2020a
'ContentType','vector',...
'BackgroundColor','none')
  댓글 수: 1
Nicolette
Nicolette 2023년 3월 17일
This is not trasnparent. It just makes the background black instead of white.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Printing and Saving에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by