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

 Accepted Answer

Mischa Kim
Mischa Kim on 29 Jan 2014
Edited: Mischa Kim on 29 Jan 2014
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 Comments

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.

Sign in to comment.

More Answers (0)

Categories

Find more on Creating, Deleting, and Querying Graphics Objects in Help Center and File Exchange

Asked:

on 29 Jan 2014

Commented:

on 30 Jan 2014

Community Treasure Hunt

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

Start Hunting!