saved pdf file doesn't look like figure
22 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Leo Simon
le 18 Avr 2016
Commenté : Jerry Malone
le 1 Sep 2023
When I save a figure as a pdf file, the pdf version adds spaces which aren't in the original. The two images attached illustrate the problem. The first image is a screenshot of my matlab figure.
The second image is a screenshot of the pdf version.
As you can see there's a huge gap before the gamma in the title, and also before the exponents in the ylabel for the third subplot. I get exactly the same problem using matlab's print command, i.e.,
print(gcf,'-dpdf',printName)
save2pdf(printName)
Any advice as to how to fix this problem would be most appreciated!
3 commentaires
Réponse acceptée
Richard Quist
le 9 Mai 2016
Modifié(e) : Richard Quist
le 9 Mai 2016
2 commentaires
Richard Quist
le 17 Mai 2016
Leo,
The short answer: instead of setting the DefaultFigureRenderer property to 'opengl' in startup.m, set the DefaultFigureRendererMode property to 'manual'.
set(0, 'DefaultFigureRendererMode', 'manual');
This will cause the print engine to use whatever the figure Renderer is when generating output; since the default in MATLAB since R2014b is to use OpenGL, the generated output will be rasterized (image).
There are alternative approaches as well, and I describe those down below.
Why Does Setting the Renderer Directly Work, but Setting DefaultFigureRenderer Doesn't?
Setting the Renderer property directly on a figure also causes the figure's RendererMode property to be changed to 'manual'... and when the RendererMode property is manual the print engine uses the figure's Renderer when generating output.
Setting the DefaultFigureRenderer in startup.m as you are doing does NOT change the mode ... which is why that didn't work for you the way you hoped it would.
Alternatives to Force Print to Use OpenGL
To force the print engine to use OpenGL you can do any of the following:
- call print and specify -opengl as one of the arguments: print -opengl -dpdf output.pdf
- manually set the figure's renderer to opengl (as noted above, this also causes the figure's RendererMode property to become 'manual'): set(gcf, 'Renderer', 'opengl');
- set the DefaultFigureRendererMode to 'manual'
Note: you can use these same methods to also force the use of painters, although for the last item you would also want to set the DefaultFigureRenderer to 'painters'
Information About MATLAB's Renderers
There's a brief discussion of the two renderers that are available in MATLAB in the documentation here.
- OpenGL rendering is most often implemented in hardware and provides fast performance. Using OpenGL when printing will always generate rasterized (image) output.
- Painters is implemented in software, so it can be slower, especially for 3D scenes. It is the only renderer MATLAB can use when generating vectorized output
Information About the Renderer Used When Printing
The documentation for the print command, here, has an entry describing the formattype argument and within that is a Vector Graphics File section that talks about the Renderer used when printing.
Plus de réponses (1)
Bharath Rangaswamy
le 21 Avr 2016
Hi Leo,
Open MATLAB, goto preferences>”Figure copy template”>”Copy options” – In this settings you get 3 options for “Clipboard format” please change this option to “Bitmap”.
Then try to save it again. This might help.
-Bharath
3 commentaires
Voir également
Catégories
En savoir plus sur Lighting, Transparency, and Shading dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!