rst2pdf:使用公式生成pdf

时间:2014-06-16 16:18:48

标签: python math python-imaging-library rst2pdf

我需要生成一个包含公式的报告。我找到了库rst2pdf。我喜欢使用库,但在使用公式生成pdf时出现问题。要生成公式,我使用数学角色。以下代码不起作用。模块PIL中发生错误。如何解决它。

#!/usr/bin/env python
# -*- coding: utf-8 -*-

from rst2pdf.createpdf import RstToPdf

mytext = u"""
================
Name of document
================

Title
---------

====================  ==========  ==========
Header row, column 1  Header 2    Header 3
====================  ==========  ==========
body row 1, column 1  column 2    column 3
body row 2, column 1  column 2    column 3
body row 3, column 1  column 2    column 3
====================  ==========  ==========

:math:`\\frac{1}{\\sigma\\sqrt{2\\pi}}\\exp\\left(-\\frac{(x-\\mu)^2}{2\\sigma^2}\\right) = 123`

"""

pdf = RstToPdf()
pdf.createPdf(text = mytext, output='foo.pdf')

输出剧本

File "C:\Python27\lib\site-packages\PIL\Image.py", line 1549, in save
    raise KeyError(ext) # unknown extension
KeyError: '.png'

1 个答案:

答案 0 :(得分:0)

当PIL / Pillow无法识别选择用于保存的文件扩展名时,会发生此错误。

from PIL import Image
im = Image.new("RGB", (100, 100))
im.save("test", ".png")

给予

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "lib/python3.7/site-packages/PIL/Image.py", line 1939, in save
     save_handler = SAVE[format.upper()]
KeyError: '.PNG'

这是因为“ .png”不是有效格式,而“ png”是有效格式。您需要做的是

im.save("test", "png")

im.save("test.png")