White lines and text show up black

9 次查看(过去 30 天)
Sylvia
Sylvia 2017-11-13
评论: DGM 2021-3-15
I am plotting a map of precipitation intensity over the UK. For example, code for the first panel is
subplot_tight(2,2,1,[0.08 0.055])
m_proj('robinson','lat',[45,57],'lon',[-17,1])
hold on
m_contourf(lon,lat,precip,num_contours,'LineStyle','none');
m_coast('line','Color','w','linewidth',1.25);
m_grid('xtick',10,'tickdir','out','yaxislocation','left');
title('Secondary ice production rate - 2Big - 1800 UTC')
text(0.05,0.9,'\bf{(a)}','Color','w','Units','normalized','FontSize',16)
When I try to save the figure, the white text (\bf{(a)}) and white coastlines show up black. How can I fix this? I am using the OpenGL renderer.. is this the issue? Thanks very much Sylvia
  5 个评论
Daniel
Daniel 2021-3-15
This "worked" for me, but it created another issue. Now the background around the figure is still grey like it is when viewing the figure instead of white like I need it to be and was before applying this fix. Is there a way to get white lines and text and a white background around the figure?
DGM
DGM 2021-3-15
Daniel, I'm not sure if this helps in your particular case, but I have a set of issues in my own plot printing routines on an inverted X display. I find that I have to explicitly set the background color.
if saveplots
figpadcolor=get(gcf,'color');
set(gcf,'color',[1 1 1]);
thisplot=255-frame2im(getframe(gcf));
imwrite(thisplot,[mode '.png'])
set(gcf,'color',figpadcolor);
end
Of course, I'm using frame2im() and inverting the output, but the idea of temporarily storing the figure color, setting it explicitly, and then restoring it is the idea I'm suggesting.

请先登录,再进行评论。

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by