Export setup to pdf

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!

 Respuesta aceptada

Jan
Jan el 23 de Abr. de 2013
Editada: Jan el 23 de Abr. de 2013

1 voto

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.

1 comentario

seb
seb el 23 de Abr. de 2013
Many thanks Jan. I've tried the set(gcf,...) and it works very well!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Graphics Performance en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

seb
el 23 de Abr. de 2013

Community Treasure Hunt

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

Start Hunting!

Translated by