필터 지우기
필터 지우기

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