欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

python将html转成PDF的实现代码(包含中文)

程序员文章站 2023-09-08 13:42:59
前提: 安装xhtml2pdf 下载字体:微软雅黑;给个地址: 待转换的文件:1.htm复制代码 代码如下:&l...

前提:

安装xhtml2pdf
下载字体:微软雅黑;给个地址:

待转换的文件: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,原因不明。