savefigures(varargi​n)

Version 1.1.0.0 (6,8 KB) von Toby
Save Figures
143 Downloads
Aktualisiert 28 Sep 2017

Lizenz anzeigen

% Saves all open figures (or those specified by input figureHandles) to specified output image type.
% Output filename is based on current axes title for each figure.
%
% syntax:
% savefigures(figureHandles, outputDirectory)
%
% where:
% figureHandles (optional) - figure handle or array of figure handles to save
% defaults to all current figures if no argument or
% empty argument ([],{},etc)
% outputDirectory (optional) - directory to place figures in
% defaults to uigetdir dialog (if no argument) or current
% directory (if argument is empty - [],'',etc)
%
% additional input parameters are available:
% 'outputFormat' - image formats used with the print function; defaults to '-dpng'
% 'orientation' - 'Portrait' or 'Landscape'; defaults to 'Portrait'
% 'paperType' - standard page sizes; defaults to 'usletter'
% 'margin' - margin to use when saving images (units correspond to paperType); defaults to 0.5
% 'saveFigFlag' - logical flag to save .fig file in addition to printed image; defaults to false
%
% these parameters are set by:
% savefigures(figureHandles,outputDirectory,'parameter','value')
%

Zitieren als

Toby (2024). savefigures(varargin) (https://www.mathworks.com/matlabcentral/fileexchange/59061-savefigures-varargin), MATLAB Central File Exchange. Abgerufen .

Kompatibilität der MATLAB-Version
Erstellt mit R2017a
Kompatibel mit allen Versionen
Plattform-Kompatibilität
Windows macOS Linux
Kategorien
Mehr zu Printing and Saving finden Sie in Help Center und MATLAB Answers

Community Treasure Hunt

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

Start Hunting!
Version Veröffentlicht Versionshinweise
1.1.0.0

Added more robust check for characters not allowed in saved filenames (based on figure titles).

1.0.0.0