saved pdf file doesn't look like figure
15 views (last 30 days)
Show older comments
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.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/161646/image.jpeg)
The second image is a screenshot of the pdf version.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/161648/image.jpeg)
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 Comments
Accepted Answer
Richard Quist
on 9 May 2016
Edited: Richard Quist
on 9 May 2016
2 Comments
Richard Quist
on 17 May 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.
More Answers (1)
Bharath Rangaswamy
on 21 Apr 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 Comments
See Also
Categories
Find more on Lighting, Transparency, and Shading in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!