]> git.lyx.org Git - lyx.git/blob - lib/scripts/svg2pdftex.py
Split osf options to families
[lyx.git] / lib / scripts / svg2pdftex.py
1 #!/usr/bin/python3
2 # -*- coding: utf-8 -*-
3
4 # file svg2pdftex.py
5 # This file is part of LyX, the document processor.
6 # Licence details can be found in the file COPYING.
7
8 # author Daniel Gloger
9 # author Martin Vermeer
10 # author Jürgen Spitzmüller
11
12 # Full author contact details are available in file CREDITS
13
14 # This script converts an SVG image to two files that can be processed
15 # with pdflatex into high quality PDF. It requires Inkscape.
16
17 # Usage:
18 #   python svg2pdftex.py [inkscape_command] inputfile.svg outputfile.pdf_tex
19 # This command generates
20 #   1. outputfile.pdf     -- the converted PDF file (text from SVG stripped)
21 #   2. outputfile.pdf_tex -- a TeX file that can be included in your
22 #                             LaTeX document using '\input{outputfile.pdf_text}'
23 #
24 # Note:
25 #   Do not use this command as
26 #     python svg2pdftex.py [inkscape_command] inputfile.svg outputfile.pdf
27 #   the real PDF file would be overwritten by a TeX file named outputfile.pdf.
28 #
29
30 from __future__ import print_function
31
32 import os, sys, re, subprocess
33
34 def runCommand(cmd):
35     ''' Utility function:
36         run a command, quit if fails
37     '''
38     res = subprocess.check_call(cmd)
39     if res != 0:
40         print("Command '%s' fails (exit code: %i)." % (res.cmd, res.returncode))
41         sys.exit(1)
42
43 InkscapeCmd = "inkscape"
44 InputFile = ""
45 OutputFile = ""
46
47 # We expect two or three args: the names of the input and output files
48 # and optionally the inkscape command (with path if needed).
49 args = len(sys.argv)
50 if args == 3:
51     # Two args: input and output file only
52     InputFile, OutputFile = sys.argv[1:]
53 elif args == 4:
54     # Three args: first arg is inkscape command
55     InkscapeCmd, InputFile, OutputFile = sys.argv[1:]
56 else:
57     # Invalid number of args. Exit with error.
58     sys.exit(1)
59
60 # Fail silently if the file doesn't exist
61 if not os.path.isfile(InputFile):
62     sys.exit(0)
63
64 # Strip the extension from ${OutputFile}
65 OutBase = os.path.splitext(OutputFile)[0]
66
67 # Inkscape (as of 0.48) can output SVG images as a PDF file without text, ${OutBase}.pdf,
68 # while outsourcing the text to a LaTeX file ${OutBase}.pdf_tex which includes and overlays
69 # the PDF image and can be \input to LaTeX files. We rename the latter file to ${OutputFile}
70 # (although this is probably the name it already has).
71 runCommand([r'%s' % InkscapeCmd, '--file=%s' % InputFile, '--export-pdf=%s.pdf' % OutBase, '--export-latex'])
72
73 os.rename('%s.pdf_tex' % OutBase, OutputFile)
74