html轉(zhuǎn)pdf
url = 'https://www.linuxidc.com/Linux/2018-02/151063.htm'
#url
pdf_name = ' '
#生成文件名稱 eg:pdf_name = 'linux.pdf'
pdfkit.from_url(url, pdf_name)
#生成pdf文件名稱
txt轉(zhuǎn)pdf
film = ' '
#目標(biāo)txt文件地址 eg:film = 'I:\\AALLTEST\\17365.txt'
gener_pdf = ' '
#生成pdf文件名稱
options = {
'page-size': 'Letter',#頁(yè)面尺寸
'margin-top': '0.75in',#上邊距
'margin-right': '0.75in',#右邊距
'margin-bottom': '0.75in',#底邊距
'margin-left': '0.75in',#左邊距
'encoding':'GBK'#編碼方式
}
pdfkit.from_file(film,gener_pdf,options=options)