필터 지우기
필터 지우기

How to export an image with no bakground color but transparent?

조회 수: 4 (최근 30일)
I want to export a graph but without any background, also NO WHITE. The exported image is expected to be transparent and will be placed on the top of another one. Only the axis and the displayed curve are allowed to appear.
I tried to do achieve this by writing the following lines:
x = 0:pi/100:2*pi;
y = sin(x);
plot(x,y);
axis([-0.2 7 -1.2 1.2])
set(gca)
set(gca,'Color','none')
print -dmeta -f1 -r600 myfigure %or -dbitmap, -djpeg, -dtiff, -depsc
But unfortunately the exported image always have a white background. I wonder if someone knows how to correct this.
I thank you in advance for your attention
Emerson

채택된 답변

Emerson De Souza
Emerson De Souza 2011년 10월 20일
set(gcf, 'color', 'blue');
set(gca, 'color', 'yellow');
set(gcf, 'InvertHardCopy', 'off');

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by