Physical size of exportgraphics

70 vues (au cours des 30 derniers jours)
Tero
Tero le 21 Déc 2021
Modifié(e) : C le 24 Août 2022
Hi all,
Is there a way to use exportgrapics and have the saved content in a specified physical dimensions?
Currently, I use exportgraphics, and save the figure content as a vector PDF. Then I use InkScape to actually adjust the PDF to a size (in mm) I need. Finally I save it as EPS and have it printed out.
How could I skip the need for InskScape and could save the image content from Matlab directly to a certain size EPS?
Thanks,
Tero

Réponse acceptée

Richard Quist
Richard Quist le 29 Déc 2021
Modifié(e) : Richard Quist le 29 Déc 2021
exportgraphics does not currently support generating output to match a specified dimension.
If you would find this feature valuable I suggest contacting tech support and request that it be added, and provide information about what capabilities/options this should support.
Another option is to use the print command, and specify the desired output size using the figure's Paper* properties (PaperPosition, PaperUnits, PaperSize)

Plus de réponses (1)

C
C le 24 Août 2022
Modifié(e) : C le 24 Août 2022
Hi there
I have done this by setting the figure properties prior to calling exportgraphics, e.g.
plot(xDat, yDat)
figH = gcf;
set(figH, 'Units', 'centimeters',...
'OuterPosition', [0 0 10 8])
exportgraphics(figH,...
'output.pdf',...
'BackgroundColor', 'none',...
'ContentType','vector');
where you can change 10 and 8 for the image width and height, respectively.

Catégories

En savoir plus sur Printing and Saving dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by