forked from wsshin/jemdoc_mathjax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
latexmath2png.py
executable file
·152 lines (121 loc) · 4.51 KB
/
latexmath2png.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
#!/usr/bin/python2.5
#from __future__ import with_statement # Until Python 2.6
"""
Converts LaTeX math to png images.
Run latexmath2png.py --help for usage instructions.
"""
"""
Author:
Kamil Kisiel <[email protected]>
URL: http://www.kamilkisiel.net
Revision History:
2007/04/20 - Initial version
TODO:
- Make handling of bad input more graceful?
---
Some ideas borrowed from Kjell Fauske's article at http://fauskes.net/nb/htmleqII/
Licensed under the MIT License:
Copyright (c) 2007 Kamil Kisiel <[email protected]>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
IN THE SOFTWARE.
"""
import os
import sys
import tempfile
import getopt
from StringIO import StringIO
from subprocess import *
# Default packages to use when generating output
default_packages = [
#'amsmath',
#'amsthm',
#'amssymb',
]
def __build_preamble(packages):
preamble = '\documentclass{article}\n'
for p in packages:
preamble += "\usepackage{%s}\n" % p
#preamble += "\usepackage[active]{preview}\n"
preamble += "\pagestyle{empty}\n\\begin{document}\n"
return preamble
def __write_output(infile, outdir, workdir = '.', prefix = '', dpi = 100):
try:
# Generate the DVI file
latexcmd = 'latex -file-line-error-style -interaction=nonstopmode -output-directory %s %s'\
% (workdir, infile)
p = Popen(latexcmd, shell=True, stdout=PIPE)
rc = p.wait()
# Something bad happened, abort
if rc != 0:
print p.stdout.read()
raise Exception('latex error')
# Convert the DVI file to PNG's
dvifile = infile.replace('.tex', '.dvi')
outprefix = os.path.join(outdir, prefix)
dvicmd = "dvipng --freetype0 -Q 8 --depth -q -T tight -D %i -z 3 -bg Transparent "\
"-o %s.png %s" % (dpi, outprefix, dvifile)
p = Popen(dvicmd, shell=True, stdout=PIPE)
rc = p.wait()
if rc != 0:
raise Exception('dvipng error')
depth = int(p.stdout.readlines()[-1].split('=')[-1])
finally:
# Cleanup temporaries
basefile = infile.replace('.tex', '')
tempext = [ '.aux', '.dvi', '.log' ]
for te in tempext:
t = basefile + te
if os.path.exists(t):
os.remove(t)
return depth
def math2png(eq, outdir, packages = default_packages, prefix = '', dpi = 100):
#try:
# Set the working directory
workdir = tempfile.gettempdir()
# Get a temporary file
fd, texfile = tempfile.mkstemp('.tex', '', workdir, True)
# Create the TeX document
#with os.fdopen(fd, 'w+') as f:
f = os.fdopen(fd, 'w')
f.write(__build_preamble(packages))
f.write("$%s$\n" % eq)
f.write('\end{document}')
f.close()
depth = __write_output(texfile, outdir, workdir, prefix, dpi)
#finally:
# pass
# #if os.path.exists(texfile):
# # os.remove(texfile)
return depth
def math2pngwl(eq, outdir, packages = default_packages, prefix = '', dpi = 100):
#try:
# Set the working directory
workdir = tempfile.gettempdir()
# Get a temporary file
fd, texfile = tempfile.mkstemp('.tex', '', workdir, True)
# Create the TeX document
#with os.fdopen(fd, 'w+') as f:
f = os.fdopen(fd, 'w')
f.write(__build_preamble(packages))
f.write("\\[%s\\]\n\\newpage\n" % eq)
f.write('\end{document}')
f.close()
depth = __write_output(texfile, outdir, workdir, prefix, dpi)
#finally:
# pass
# #if os.path.exists(texfile):
# # os.remove(texfile)
return depth