why does not MATLAB print/save properly?

3 visualizaciones (últimos 30 días)
Vahid
Vahid el 11 de Oct. de 2012
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

Respuesta aceptada

Walter Roberson
Walter Roberson el 11 de Oct. de 2012
See the figure property InvertHardcopy
  1 comentario
Vahid
Vahid el 12 de Oct. de 2012
Editada: Walter Roberson el 12 de Oct. de 2012
thanks a lot!
figure('InvertHardcopy','off');

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by