How to save AUTOMATICALLY all opened figures (unknown amount) in one .pdf file.
115 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi all
Please, how to save all figures that have been generated by a code (or different codes - so al opened figures) in one pdf file. I found some solution where one need to specify and save manualy all the figures, but I am looking for something fast and automatic.
I have already tried export_fig and SaveFigs from Matlab file exchange but it doesn not work correctly. ( if I am wrong, please show how to use them correctly)
Thanks
0 commentaires
Réponse acceptée
Adam Danz
le 21 Mai 2019
Modifié(e) : Adam Danz
le 21 Mai 2019
Get handles to all open figures:
figHandles = findall(0,'Type','figure');
On the first iteration of the loop you'll need to create the file. On all subsequent iterations of the loops, you'll append the file. Your code may look something like this (you can adapt it to your needs).
% Create filename
fn = tempname(); %in this example, we'll save to a temp directory.
% Save first figure
export_fig(fn, '-pdf', figHandles(1))
% Loop through figures 2:end
for i = 2:numel(figHandles)
export_fig(fn, '-pdf', figHandles(i), '-append')
end
If you want to open the document when you're done,
winopen(fn) %assuming fn is the full path the document
5 commentaires
ChrisMat
le 24 Mai 2019
Hey Adam!
If i run export_fig, a window pops up saying: Ghost script not found. Please locate the program.
Could you help me with this one?
thanks!
Christian
Adam Danz
le 24 Mai 2019
Check out the description of the function found here:
When exporting to vector format (pdf & eps), and to bitmap using the painters
renderer, this function requires that ghostscript is installed on your system.
You can download this from:
http://www.ghostscript.com
Plus de réponses (0)
Voir également
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!