Problem in cropping the pdf image in matlab
10 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have the following pdf image generated by matlab code. When I save this image as ''pdf'', it comes up with huge white portion that I really want to remove. I just keep the image portion only. Please somebody help me to get that. Pl see the attachment for image in ''pdf''.
5 commentaires
Ameer Hamza
le 12 Juin 2020
"I thought that as pdf image has good resolution"
Not necessarily. You can save high-resolution png and jpg files too. pdf is useful if you want vector image; however, in that case, I prefer eps over pdf.
Réponse acceptée
Ameer Hamza
le 12 Juin 2020
Modifié(e) : Ameer Hamza
le 12 Juin 2020
Try exportgraphics() in R2020a
t = linspace(0, 2*pi, 100);
r = linspace(0, 1, 100);
polarplot(t, r)
exportgraphics(gcf, 'test.pdf');
The output pdf file is attached.
For older releases
t = linspace(0, 2*pi, 100);
r = linspace(0, 1, 100);
polarplot(t, r)
export_fig(gcf, 'test.pdf');
export_fig is taken from here: https://www.mathworks.com/matlabcentral/fileexchange/23629-export_fig
8 commentaires
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!