changing color canvas when saving *.jpeg image

2 次查看(过去 30 天)
*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
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
Mischa Kim
Mischa Kim 2014-1-30
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 个)

类别

Help CenterFile Exchange 中查找有关 Interactive Control and Callbacks 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by