How can I properly export a figure using the 'patch' command?

13 次查看(过去 30 天)
Hi all:
I'd like to export a figure in which I use the 'patch' command to shade recessions. However, the image quality drops as soon as I add the recession bands.
I'm using 'exportfig' and convert eps into pdf via ghostscript.
Does anybody have an idea how to fix this problem?
Best, Peter

采纳的回答

José-Luis
José-Luis 2012-11-8
编辑:José-Luis 2012-11-8
Looks like your image is transformed to a bitmap. When you use patch, the renderer might be set to OpenGL by default. Try and change your renderer to Painters before exporting your figure. That should ensure that you keep vector graphics. Note that transparencies won't work with Painters.
  7 个评论
José-Luis
José-Luis 2012-11-8
编辑:José-Luis 2012-11-8
set(h_over,'XTick',[],'YTick',[]);
or
linkaxes([h h_over],'x');
Off the top of my head I can't remember the command you are asking for or whether it actually exists.
Peter
Peter 2012-11-9
set(gca,'Layer','top') worked out. Thanks for your help José-Luis!

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Lighting, Transparency, and Shading 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by