source: issm/branches/trunk-larour-NatGeoScience2016/externalpackages/export_fig/append_pdfs.m@ 21243

Last change on this file since 21243 was 19993, checked in by seroussi, 9 years ago

BUG: reverting back to old export_fig (too many problems)

  • Property svn:executable set to *
File size: 2.0 KB
Line 
1%APPEND_PDFS Appends/concatenates multiple PDF files
2%
3% Example:
4% append_pdfs(output, input1, input2, ...)
5% append_pdfs(output, input_list{:})
6% append_pdfs test.pdf temp1.pdf temp2.pdf
7%
8% This function appends multiple PDF files to an existing PDF file, or
9% concatenates them into a PDF file if the output file doesn't yet exist.
10%
11% This function requires that you have ghostscript installed on your
12% system. Ghostscript can be downloaded from: http://www.ghostscript.com
13%
14% IN:
15% output - string of output file name (including the extension, .pdf).
16% If it exists it is appended to; if not, it is created.
17% input1 - string of an input file name (including the extension, .pdf).
18% All input files are appended in order.
19% input_list - cell array list of input file name strings. All input
20% files are appended in order.
21
22% Copyright: Oliver Woodford, 2011
23
24% Thanks to Reinhard Knoll for pointing out that appending multiple pdfs in
25% one go is much faster than appending them one at a time.
26
27% Thanks to Michael Teo for reporting the issue of a too long command line.
28% Issue resolved on 5/5/2011, by passing gs a command file.
29
30% Thanks to Martin Wittmann for pointing out the quality issue when
31% appending multiple bitmaps.
32% Issue resolved (to best of my ability) 1/6/2011, using the prepress
33% setting
34
35function append_pdfs(varargin)
36% Are we appending or creating a new file
37append = exist(varargin{1}, 'file') == 2;
38if append
39 output = [tempname '.pdf'];
40else
41 output = varargin{1};
42 varargin = varargin(2:end);
43end
44% Create the command file
45cmdfile = [tempname '.txt'];
46fh = fopen(cmdfile, 'w');
47fprintf(fh, '-q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -dPDFSETTINGS=/prepress -sOutputFile="%s" -f', output);
48fprintf(fh, ' "%s"', varargin{:});
49fclose(fh);
50% Call ghostscript
51ghostscript(['@"' cmdfile '"']);
52% Delete the command file
53delete(cmdfile);
54% Rename the file if needed
55if append
56 movefile(output, varargin{1});
57end
58end
Note: See TracBrowser for help on using the repository browser.