您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關python如何輸出pdf文檔的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
python導出pdf,參考諸多資料,發現pdfkit是效果比較好的。
故下載后進行了實現,多次失敗后終于成功了,現將其中經驗總結如下:
""" 需要安裝pdfkit,另外需要安裝可執行文件wkhtmltopdf.exe, pdfkit核心命令是調用wkhtmltopdf.exe實現轉pdf 有三個接口: pdfkit.from_url pdfkit.from_string pdfkit.from_file 需要注意的是,pdfkit主要是用來將html轉pdf,所以文件也是html文件或者純文本文件,其他文件可能失敗。 需要用pdfkit.configuration(wkhtmltopdf=path_wk)來說明wkhtmltopdf.exe的安裝位置,否則會找不到 options來約定紙張大小,屬性'encoding'約定編碼,以防亂碼 """ get_cursor = getcursor.GetCursor() conn = get_cursor.get_native_conn() cursor = conn.cursor() sql = 'select * from lease_contract where id = 1' cursor.execute(sql) fetchall = cursor.fetchall() path_wk = r'C:\Program Files\wkhtmltopdf\bin\wkhtmltopdf.exe' config = pdfkit.configuration(wkhtmltopdf=path_wk) # 用options來約定編碼格式,以防亂碼 options = { 'encoding': 'utf-8' } for data in fetchall: with open('D:\\testsave.docx', 'w', encoding='utf-8')as f: f.write(data[13]) with open('D:\\testsave.docx', 'r', encoding='utf-8')as f: pdfkit.from_file(f, 'D:\\testsave.pdf', configuration=config, options=options) pdfkit.from_string(data[13], 'D:\\test.pdf', configuration=config, options=options)
這是我個人試驗的代碼,效果如下。簡單記錄,實為興趣。
感謝各位的閱讀!關于“python如何輸出pdf文檔”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。