python将html转成PDF的实现代码(包含中文)
前提:
安装xhtml2pdf https://pypi.python.org/pypi/xhtml2pdf/
下载字体:微软雅黑;给个地址://www.jb51.net/fonts/8481.html
待转换的文件:1.htm
代码如下:
<meta charset="utf8"/> <style type='text/css'> @font-face { font-family: "code2000"; src: url("code2000.ttf") } html { font-family: code2000; } </style> <html> <body><table> <tr> <td>文字</td> <td>123</td> </tr> <tr> <td>图片</td> <td><img src="1.jpg"></td> </tr> </table></body></html>
html_to_pdf.py程序
代码如下:
# -*- coding: utf-8 -*- import sx.pisa3 as pisa data= open('1.htm').read() result = file('test.pdf', 'wb') pdf = pisa.CreatePDF(data, result) result.close() pisa.startViewer('test.pdf')
说明:xhtml2pdf不能识别汉字,需要在html文件中通过CSS的方式嵌入code2000字体,貌似只能用code2000,原因不明。
相关推荐
lupeng 2020-11-14
sjcheck 2020-11-10
pythonclass 2020-07-29
huzijia 2020-06-16
qsdnet我想学编程 2020-06-13
gufudhn 2020-06-06
haocxy 2020-05-28
niehanmin 2020-05-16
sjcheck 2020-11-03
meylovezn 2020-08-28
owhile 2020-08-18
Francismingren 2020-08-17
sunzhihaofuture 2020-07-19
爱读书的旅行者 2020-07-07
行吟阁 2020-07-05
tianqi 2020-07-05
行吟阁 2020-07-04
冰蝶 2020-07-04