why does not MATLAB print/save properly?

3 views (last 30 days)
I have developed a very straightforward MATLAB code whose sets the background color of the plot to 'blue' and the color of the line to 'white':
x=-10:10;
y=x.^2;
figPath='C:\test.jpg';
% plotting the figure
hFig=figure('PaperType','A4');
line(x,y,'color','w');
box off;
set(gca,'Color','b') ; %color of the area behind the plot
print(hFig,'-djpeg','-r600',figPath);
but what is printed is different from what I have already set, I mean the color of the area behind the plot is white (I set it to blue in my code) and the color of line is black while I set it to white in the code.
I would be grateful if anybody could help me to resolve the problem.
Many thanks in advance, _V

Accepted Answer

Walter Roberson
Walter Roberson on 11 Oct 2012
See the figure property InvertHardcopy
  1 Comment
Vahid
Vahid on 12 Oct 2012
Edited: Walter Roberson on 12 Oct 2012
thanks a lot!
figure('InvertHardcopy','off');

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!