changing color canvas when saving *.jpeg image

*Dear fellow matlabbers,
I tried to save a plot in *.jpeg format, but after i open the result, i always get grey color in the cannvas of my plots, anyone knows how to change it??
Thankyou :D
BR~
Mei

 채택된 답변

Mischa Kim
Mischa Kim 2014년 1월 29일
편집: Mischa Kim 2014년 1월 29일

0 개 추천

Meionly, have you tried > File > Export Setup..., then chose > Rendering? Check "Custom color" and pick a color of your liking, e.g., r for red ( w for white). Hit [Apply to Figure] and then [Export] to .jpg.

댓글 수: 2

Meionly
Meionly 2014년 1월 29일
편집: Meionly 2014년 1월 29일
Hi Mischa, thanks for your answer
it did works, but it's going to be a super hard work, if i have do it on my 100 plot, one by one. :-S i tried to use
whitebg([1 1 1]);
but it doesn't work, any other idea how to code this?
BR
-mei
OK. In this case you would set up a batch job programmatically, where you open the figures and then use
set(gcf,'color','w');
print(gcf, '-djpeg', 'myFilename.jpg')
to set the background color and export the current figure (gcf) to .jpg.

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

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

질문:

2014년 1월 29일

댓글:

2014년 1월 30일

Community Treasure Hunt

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

Start Hunting!

Translated by