Export setup to pdf
13 次查看(过去 30 天)
显示 更早的评论
I've been using export setup to save triplot of grid mesh .fig to .pdf. The .pdf works like .fig, which can keep the details for zoom in. However, when I plotted a grid mesh with much more triangular cells, the .pdf has been compressed as .jpeg. Any tips to keep the export setup work without compression? Thanks!
0 个评论
采纳的回答
Jan
2013-4-23
编辑:Jan
2013-4-23
When the figure's property 'RendererMode' is set to 'auto', many 3D objects enable the OpenGL renderer. This renderer cannot create a vector output, such that you get an pixel image. Solution: Set the renderer manually to 'Painters':
figure('Renderer', 'Painters'); % At the creation
Or before the export:
set(gcf, 'Renderer', 'Painters');
Note: This problem has been discussed repeatedly in this forum, such that searching for "pdf pixel" would be faster than waiting for someone, who answers this again.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Graphics Performance 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!