Python converts HTML into PDF implementation code (contains Chinese) _python

Source: Internet
Author: User

Premise:

Install Xhtml2pdf https://pypi.python.org/pypi/xhtml2pdf/
Download font: Microsoft James Black; Address: http://www.jb51.net/fonts/8481.html

Files to convert: 1.htm

Copy Code code as follows:

<meta charset= "UTF8"/>
<style type= ' text/css ' >
@font-face {
font-family: "code2000";
Src:url ("Code2000.ttf")
}

HTML {
font-family:code2000;
}
</style>
<body><table>
<tr>
<td> text </td>
<td>123</td>
</tr>
<tr>
<td> Pictures </td>
<td></td>
</tr>
</table></body>

html_to_pdf.py Program

Copy Code code as follows:

#-*-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 ')

Note: Xhtml2pdf can not recognize Chinese characters, the need to embed code2000 fonts in HTML files through CSS, seemingly only with code2000, unexplained.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.