]> git.lyx.org Git - lyx.git/blob - lib/scripts/lyxpreview-lytex2bitmap.py
Small clarification about 'LyX Archives'
[lyx.git] / lib / scripts / lyxpreview-lytex2bitmap.py
1 #! /usr/bin/env python
2 # -*- coding: utf-8 -*-
3
4 # file lyxpreview-lytex2bitmap.py
5 # This file is part of LyX, the document processor.
6 # Licence details can be found in the file COPYING.
7
8 # author Angus Leeming
9 # with much advice from members of the preview-latex project:
10 # David Kastrup, dak@gnu.org and
11 # Jan-Åke Larsson, jalar@mai.liu.se.
12
13 # Full author contact details are available in file CREDITS
14
15 # This script takes a LaTeX file and generates a collection of
16 # png or ppm image files, one per previewed snippet.
17
18 # Pre-requisites:
19 # * A latex executable;
20 # * preview.sty;
21 # * dvipng;
22 # * pngtoppm (if outputing ppm format images).
23
24 # preview.sty and dvipng are part of the preview-latex project
25 # http://preview-latex.sourceforge.net/
26
27 # preview.sty can alternatively be obtained from
28 # CTAN/support/preview-latex/
29
30 # Example usage:
31 # lyxpreview-lytex2bitmap.py png 0lyxpreview.tex 128 000000 faf0e6
32
33 # This script takes six arguments:
34 # FORMAT:   The desired output format. Either 'png' or 'ppm'.
35 # TEXFILE:  the name of the .tex file to be converted.
36 # DPI:      a scale factor, used to ascertain the resolution of the
37 #           generated image which is then passed to gs.
38 # FG_COLOR: the foreground color as a hexadecimal string, eg '000000'.
39 # BG_COLOR: the background color as a hexadecimal string, eg 'faf0e6'.
40 # CONVERTER: the converter (optional). Default is latex.
41
42 # Decomposing TEXFILE's name as DIR/BASE.tex, this script will,
43 # if executed successfully, leave in DIR:
44 # * a (possibly large) number of image files with names
45 #   like BASE[0-9]+.png
46 # * a file BASE.metrics, containing info needed by LyX to position
47 #   the images correctly on the screen.
48
49 import glob, os, re, shutil, string, sys
50
51 from legacy_lyxpreview2ppm import legacy_conversion, \
52      legacy_conversion_step2, legacy_extract_metrics_info
53
54 from lyxpreview_tools import copyfileobj, error, find_exe, \
55      find_exe_or_terminate, make_texcolor, mkstemp, run_command, warning, \
56      write_metrics_info
57
58
59 # Pre-compiled regular expressions.
60 latex_file_re = re.compile("\.tex$")
61
62
63 def usage(prog_name):
64     return "Usage: %s <format> <latex file> <dpi> <fg color> <bg color>\n"\
65            "\twhere the colors are hexadecimal strings, eg 'faf0e6'"\
66            % prog_name
67     
68 # Returns a list of tuples containing page number and ascent fraction
69 # extracted from dvipng output.
70 # Use write_metrics_info to create the .metrics file with this info
71 def extract_metrics_info(dvipng_stdout):
72     # "\[[0-9]+" can match two kinds of numbers: page numbers from dvipng
73     # and glyph numbers from mktexpk. The glyph numbers always match
74     # "\[[0-9]+\]" while the page number never is followed by "\]". Thus:
75     page_re = re.compile("\[([0-9]+)[^]]");
76     metrics_re = re.compile("depth=(-?[0-9]+) height=(-?[0-9]+)")
77
78     success = 0
79     page = ""
80     pos = 0
81     results = []
82     while 1:
83         match = page_re.search(dvipng_stdout, pos)
84         if match == None:
85             break
86         page = match.group(1)
87         pos = match.end()
88         match = metrics_re.search(dvipng_stdout, pos)
89         if match == None:
90             break
91         success = 1
92
93         # Calculate the 'ascent fraction'.
94         descent = string.atof(match.group(1))
95         ascent  = string.atof(match.group(2))
96
97         frac = 0.5
98         if ascent >= 0 or descent >= 0:
99             if abs(ascent + descent) > 0.1:
100                 frac = ascent / (ascent + descent)
101
102             # Sanity check
103             if frac < 0:
104                 frac = 0.5
105
106         results.append((page, frac))
107         pos = match.end() + 2
108
109     if success == 0:
110         error("Failed to extract metrics info from dvipng")
111     
112     return results
113
114
115 def color_pdf(latex_file, bg_color, fg_color):
116     use_preview_pdf_re = re.compile("(\s*\\\\usepackage\[[^]]+)((pdftex|xetex)\]{preview})")
117
118     tmp = mkstemp()
119     
120     fg = ""
121     if fg_color != "0.000000,0.000000,0.000000":
122         fg = '  \\AtBeginDocument{\\let\\oldpreview\\preview\\renewcommand\\preview{\\oldpreview\\color[rgb]{%s}}}\n' % (fg_color)
123     
124     success = 0
125     try:
126         for line in open(latex_file, 'r').readlines():
127             match = use_preview_pdf_re.match(line)
128             if match == None:
129                 tmp.write(line)
130                 continue
131             success = 1
132             tmp.write("  \\usepackage{color}\n" \
133                   "  \\pagecolor[rgb]{%s}\n" \
134                   "%s" \
135                   "%s\n" \
136                   % (bg_color, fg, match.group()))
137             continue
138
139     except:
140         # Unable to open the file, but do nothing here because
141         # the calling function will act on the value of 'success'.
142         warning('Warning in color_pdf! Unable to open "%s"' % latex_file)
143         warning(`sys.exc_type` + ',' + `sys.exc_value`)
144
145     if success:
146         copyfileobj(tmp, open(latex_file,"wb"), 1)
147
148     return success
149
150
151 def convert_to_ppm_format(pngtopnm, basename):
152     png_file_re = re.compile("\.png$")
153
154     for png_file in glob.glob("%s*.png" % basename):
155         ppm_file = png_file_re.sub(".ppm", png_file)
156
157         p2p_cmd = '%s "%s"' % (pngtopnm, png_file)
158         p2p_status, p2p_stdout = run_command(p2p_cmd)
159         if p2p_status != None:
160             error("Unable to convert %s to ppm format" % png_file)
161
162         ppm = open(ppm_file, 'w')
163         ppm.write(p2p_stdout)
164         os.remove(png_file)
165
166
167 def main(argv):
168     # Parse and manipulate the command line arguments.
169     if len(argv) != 6 and len(argv) != 7:
170         error(usage(argv[0]))
171
172     output_format = string.lower(argv[1])
173
174     dir, latex_file = os.path.split(argv[2])
175     if len(dir) != 0:
176         os.chdir(dir)
177
178     dpi = string.atoi(argv[3])
179     fg_color = make_texcolor(argv[4], False)
180     bg_color = make_texcolor(argv[5], False)
181
182     fg_color_gr = make_texcolor(argv[4], True)
183     bg_color_gr = make_texcolor(argv[5], True)
184
185     # External programs used by the script.
186     path = string.split(os.environ["PATH"], os.pathsep)
187     if len(argv) == 7:
188         latex = argv[6]
189     else:
190         latex = find_exe_or_terminate(["latex", "pplatex", "platex", "latex2e"], path)
191
192     lilypond_book = find_exe_or_terminate(["lilypond-book"], path)
193
194     # Make a copy of the latex file
195     lytex_file = latex_file_re.sub(".lytex", latex_file)
196     shutil.copyfile(latex_file, lytex_file)
197
198     # Determine whether we need pdf or eps output
199     pdf_output = latex in ["lualatex", "pdflatex", "xelatex"]
200
201     # Preprocess the latex file through lilypond-book.
202     if pdf_output:
203         lytex_call = '%s --safe --pdf --latex-program=%s "%s"' % (lilypond_book, latex, lytex_file)
204     else:
205         lytex_call = '%s --safe --latex-program=%s "%s"' % (lilypond_book, latex, lytex_file)
206     lytex_status, lytex_stdout = run_command(lytex_call)
207     if lytex_status != None:
208         warning("%s failed to compile %s" \
209               % (os.path.basename(lilypond_book), lytex_file))
210         warning(lytex_stdout)
211
212     # This can go once dvipng becomes widespread.
213     dvipng = find_exe(["dvipng"], path)
214     if dvipng == None:
215         # The data is input to legacy_conversion in as similar
216         # as possible a manner to that input to the code used in
217         # LyX 1.3.x.
218         vec = [ argv[0], argv[2], argv[3], argv[1], argv[4], argv[5], latex ]
219         return legacy_conversion(vec)
220
221     pngtopnm = ""
222     if output_format == "ppm":
223         pngtopnm = find_exe_or_terminate(["pngtopnm"], path)
224
225     # Move color information for PDF into the latex file.
226     if not color_pdf(latex_file, bg_color_gr, fg_color_gr):
227         error("Unable to move color info into the latex file")
228
229     # Compile the latex file.
230     latex_call = '%s "%s"' % (latex, latex_file)
231
232     latex_status, latex_stdout = run_command(latex_call)
233     if latex_status != None:
234         warning("%s had problems compiling %s" \
235               % (os.path.basename(latex), latex_file))
236         warning(latex_stdout)
237
238     if latex == "xelatex":
239         warning("Using XeTeX")
240         # FIXME: skip unnecessary dvips trial in legacy_conversion_step2
241         return legacy_conversion_step2(latex_file, dpi, output_format)
242
243     # The dvi output file name
244     dvi_file = latex_file_re.sub(".dvi", latex_file)
245
246     # Check for PostScript specials in the dvi, badly supported by dvipng
247     # This is required for correct rendering of PSTricks and TikZ
248     dv2dt = find_exe_or_terminate(["dv2dt"], path)
249     dv2dt_call = '%s "%s"' % (dv2dt, dvi_file)
250  
251     # The output from dv2dt goes to stdout
252     dv2dt_status, dv2dt_output = run_command(dv2dt_call)
253     psliteral_re = re.compile("^special[1-4] [0-9]+ '(\"|ps:)")
254
255     # Parse the dtl file looking for PostScript specials.
256     # Pages using PostScript specials are recorded in ps_pages and then
257     # used to create a different LaTeX file for processing in legacy mode.
258     page_has_ps = False
259     page_index = 0
260     ps_pages = []
261
262     for line in dv2dt_output.split("\n"):
263         # New page
264         if line.startswith("bop"):
265             page_has_ps = False
266             page_index += 1
267
268         # End of page
269         if line.startswith("eop") and page_has_ps:
270             # We save in a list all the PostScript pages
271             ps_pages.append(page_index)
272
273         if psliteral_re.match(line) != None:
274             # Literal PostScript special detected!
275             page_has_ps = True
276
277     pages_parameter = ""
278     if len(ps_pages) == page_index:
279         # All pages need PostScript, so directly use the legacy method.
280         vec = [argv[0], argv[2], argv[3], argv[1], argv[4], argv[5], latex]
281         return legacy_conversion(vec)
282     elif len(ps_pages) > 0:
283         # Don't process Postscript pages with dvipng by selecting the
284         # wanted pages through the -pp parameter. E.g., dvipng -pp 4-12,14,64
285         pages_parameter = " -pp "
286         skip = True
287         last = -1
288
289         # Use page ranges, as a list of pages could exceed command line
290         # maximum length (especially under Win32)
291         for index in xrange(1, page_index + 1):
292             if (not index in ps_pages) and skip:
293                 # We were skipping pages but current page shouldn't be skipped.
294                 # Add this page to -pp, it could stay alone or become the
295                 # start of a range.
296                 pages_parameter += str(index)
297                 # Save the starting index to avoid things such as "11-11"
298                 last = index
299                 # We're not skipping anymore
300                 skip = False
301             elif (index in ps_pages) and (not skip):
302                 # We weren't skipping but current page should be skipped
303                 if last != index - 1:
304                     # If the start index of the range is the previous page
305                     # then it's not a range
306                     pages_parameter += "-" + str(index - 1)
307
308                 # Add a separator
309                 pages_parameter += ","
310                 # Now we're skipping
311                 skip = True
312
313         # Remove the trailing separator
314         pages_parameter = pages_parameter.rstrip(",")
315         # We've to manage the case in which the last page is closing a range
316         if (not index in ps_pages) and (not skip) and (last != index):
317                 pages_parameter += "-" + str(index)
318
319     # Run the dvi file through dvipng.
320     dvipng_call = '%s -Ttight -depth -height -D %d -fg "%s" -bg "%s" %s "%s"' \
321                   % (dvipng, dpi, fg_color, bg_color, pages_parameter, dvi_file)
322     dvipng_status, dvipng_stdout = run_command(dvipng_call)
323
324     if dvipng_status != None:
325         warning("%s failed to generate images from %s ... looking for PDF" \
326               % (os.path.basename(dvipng), dvi_file))
327         # FIXME: skip unnecessary dvips trial in legacy_conversion_step2
328         return legacy_conversion_step2(latex_file, dpi, output_format)
329
330     if len(ps_pages) > 0:
331         # Some pages require PostScript.
332         # Create a new LaTeX file just for the snippets needing
333         # the legacy method
334         original_latex = open(latex_file, "r")
335         legacy_latex_file = latex_file_re.sub("_legacy.tex", latex_file)
336         legacy_latex = open(legacy_latex_file, "w")
337
338         page_index = 0
339         skip_page = False
340         for line in original_latex:
341             if line.startswith("\\begin{preview}"):
342                 page_index += 1
343                 # Skips all pages processed by dvipng
344                 skip_page = page_index not in ps_pages
345
346             if not skip_page:
347                 legacy_latex.write(line)
348
349             if line.startswith("\\end{preview}"):
350                 skip_page = False
351
352         legacy_latex.close()
353         original_latex.close()
354
355         # Pass the new LaTeX file to the legacy method
356         vec = [ argv[0], latex_file_re.sub("_legacy.tex", argv[2]), \
357                 argv[3], argv[1], argv[4], argv[5], latex ]
358         legacy_conversion(vec, True)
359
360         # Now we need to mix metrics data from dvipng and the legacy method
361         metrics_file = latex_file_re.sub(".metrics", latex_file)
362
363         dvipng_metrics = extract_metrics_info(dvipng_stdout)
364         legacy_metrics = legacy_extract_metrics_info(latex_file_re.sub("_legacy.log", latex_file))
365         
366         # Check whether a page is present in dvipng_metrics, otherwise
367         # add it getting the metrics from legacy_metrics
368         legacy_index = -1;
369         for i in range(page_index):
370             # If we exceed the array bounds or the dvipng_metrics doesn't
371             # match the current one, this page belongs to the legacy method
372             if (i > len(dvipng_metrics) - 1) or (dvipng_metrics[i][0] != str(i + 1)):
373                 legacy_index += 1
374                 
375                 # Add this metric from the legacy output
376                 dvipng_metrics.insert(i, (str(i + 1), legacy_metrics[legacy_index][1]))
377                 # Legacy output filename
378                 legacy_output = os.path.join(dir, latex_file_re.sub("_legacy%s.%s" % 
379                     (legacy_metrics[legacy_index][0], output_format), latex_file))
380
381                 # Check whether legacy method actually created the file
382                 if os.path.isfile(legacy_output):
383                     # Rename the file by removing the "_legacy" suffix
384                     # and adjusting the index
385                     bitmap_output = os.path.join(dir, latex_file_re.sub("%s.%s" % 
386                         (str(i + 1), output_format), latex_file))
387                     os.rename(legacy_output, bitmap_output)
388
389         # Actually create the .metrics file
390         write_metrics_info(dvipng_metrics, metrics_file)
391     else:
392         # Extract metrics info from dvipng_stdout.
393         # In this case we just used dvipng, so no special metrics
394         # handling is needed.
395         metrics_file = latex_file_re.sub(".metrics", latex_file)
396         write_metrics_info(extract_metrics_info(dvipng_stdout), metrics_file)
397
398     # Convert images to ppm format if necessary.
399     if output_format == "ppm":
400         convert_to_ppm_format(pngtopnm, latex_file_re.sub("", latex_file))
401
402     return 0
403
404
405 if __name__ == "__main__":
406     main(sys.argv)