You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(3.31) Fixed PDF quality issues as suggested by @scholnik (issues #285, #368); minor fixes for MacOS/Linux; use figure's FileName property (if available) as the default export filename; added -gif optional format parameter
Copy file name to clipboardexpand all lines: export_fig.m
+109-46
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@
5
5
% imageData = export_fig
6
6
% [imageData, alpha] = export_fig
7
7
% export_fig filename
8
-
% export_fig filename -format1 -format2
8
+
% export_fig ... -<format>
9
9
% export_fig ... -nocrop
10
10
% export_fig ... -c[<val>,<val>,<val>,<val>]
11
11
% export_fig ... -transparent
@@ -93,13 +93,14 @@
93
93
% Inputs:
94
94
% filename - string containing the name (optionally including full or
95
95
% relative path) of the file the figure is to be saved as. If
96
-
% a path is not specified, the figure is saved in the current
97
-
% directory. If no name and no output arguments are specified,
98
-
% the default name, 'export_fig_out', is used. If neither a
99
-
% file extension nor a format are specified, a ".png" is added
100
-
% and the figure saved in that format.
96
+
% no path is specified, the figure is saved in the current folder.
97
+
% If no name and no output arguments are specified, the figure's
98
+
% FileName property is used. If this property is empty, then the
99
+
% default name 'export_fig_out' is used. If neither file extension
100
+
% nor a format parameter are specified, a ".png" is added to the
101
+
% filename and the figure saved in PNG format.
101
102
% -<format> - string(s) containing the output file extension(s). Options:
102
-
% '-pdf','-eps','emf','-svg','-png','-tif','-jpg' and '-bmp'.
103
+
% '-pdf','-eps','emf','-svg','-png','-tif','-jpg','-gif' and '-bmp'.
103
104
% Multiple formats can be specified, without restriction.
104
105
% For example: export_fig('-jpg', '-pdf', '-png', ...)
105
106
% Note: '-tif','-tiff' are equivalent, and so are '-jpg','-jpeg'.
@@ -355,6 +356,7 @@
355
356
% 04/12/22: (3.28) Added -metadata option to add custom info to PDF files; fixed -clipboard export (transparent and gray-scale images; deployed apps; old Matlabs)
356
357
% 03/01/23: (3.29) Use silent mode by default in deployed apps; suggest installing ghostscript/pdftops if required yet missing; fixed invalid chars in export filename; reuse existing figure toolbar if available
357
358
% 03/02/23: (3.30) Added -contextmenu option to add interactive context-menu items; fixed: -menubar,-toolbar created the full default figure menubar/toolbar if not shown; enlarged toolbar icon; support adding export_fig icon to custom toolbars; alert if specifying multiple or invalid handle(s)
359
+
% 20/02/23: (3.31) Fixed PDF quality issues as suggested by @scholnik (issues #285, #368); minor fixes for MacOS/Linux; use figure's FileName property (if available) as the default export filename; added -gif optional format parameter
error('export_fig:BadPath','Folder %s does not exist, nor is it the name of any active figure!',p);
1799
1810
else% isFigName
1800
1811
% specified a figure name so ignore the bad folder part
1801
1812
end
1802
1813
end
1803
-
switch lower(ext)
1804
-
case {'.tif', '.tiff'}
1805
-
options.tif =true;
1806
-
case {'.jpg', '.jpeg'}
1807
-
options.jpg =true;
1808
-
case'.png'
1809
-
options.png =true;
1810
-
case'.bmp'
1811
-
options.bmp =true;
1812
-
case'.eps'
1813
-
options.eps =true;
1814
-
case'.emf'
1815
-
options.emf =true;
1816
-
case'.pdf'
1817
-
options.pdf =true;
1814
+
switch lower(ext(2:end))
1815
+
case {'tif', 'tiff','jpg', 'jpeg','png','bmp','eps','emf','pdf','svg','gif'}
1816
+
options = setOptionsFormat(options, ext);
1818
1817
case'.fig'
1819
1818
% If no open figure, then load the specified .fig file and continue
1820
1819
figFilename =thisArg;
@@ -1829,10 +1828,6 @@
1829
1828
fig =-1;
1830
1829
return
1831
1830
end
1832
-
case'.svg'
1833
-
options.svg =true;
1834
-
case'.gif'
1835
-
options.gif =true;
1836
1831
otherwise
1837
1832
options.name =thisArg;
1838
1833
end
@@ -1863,6 +1858,27 @@
1863
1858
warning('export_fig:AntiAliasing','You requested anti-aliased export_fig output of an aliased figure (''GraphicsSmoothing''=''off''). You will see better results if you set your figure''s GraphicsSmoothing property to ''on'' before calling export_fig.')
1864
1859
end
1865
1860
1861
+
% Use the figure's FileName property as the default export filename
1862
+
if isempty(options.name)
1863
+
options.name = get(fig,'FileName');
1864
+
options.name = regexprep(options.name,'[*?"<>|:]+','-'); %remove illegal filename chars, but not folder seperators!
1865
+
if isempty(options.name)
1866
+
% No FileName property specified for the figure, use 'export_fig_out'
1867
+
options.name ='export_fig_out';
1868
+
else
1869
+
% Ensure the filepath is valid
1870
+
[p, options.name, ext] = fileparts(options.name);
1871
+
options = setOptionsFormat(options, ext);
1872
+
if ~isempty(p) % export folder name/path was specified
0 commit comments