這篇文章主要介紹使用Qtwebkit和PHP將HTML轉(zhuǎn)換為PDF的方法,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
荷塘ssl適用于網(wǎng)站、小程序/APP、API接口等需要進(jìn)行數(shù)據(jù)傳輸應(yīng)用場景,ssl證書未來市場廣闊!成為創(chuàng)新互聯(lián)的ssl證書銷售渠道,可以享受市場價(jià)格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:18980820575(備注:SSL證書合作)期待與您的合作!
步驟1:在Linux中安裝wkhtmltopdf
從google code下載wkhtmltopdf并安裝到Linux系統(tǒng)。
# cd /opt # wget https://wkhtmltopdf.googlecode.com/files/wkhtmltopdf-0.9.9-static-i386.tar.bz2 # tar xjf wkhtmltopdf-0.9.9-static-i386.tar.bz2 # mv wkhtmltopdf-i386 /usr/bin/wkhtmltopdf # chown apache:apache /usr/bin/wkhtmltopdf # chmod +x /usr/bin/wkhtmltopdf
步驟2:使用命令行創(chuàng)建PDF
首先檢查wkhtmltopdf腳本,它在命令行中正常工作。下面的命令將創(chuàng)建http://google.com網(wǎng)頁的pdf。
# /usr/bin/wkhtmltopdf http://google.com google.pdf
步驟3:使用wkhtmltopdf創(chuàng)建pdf的php代碼
使用下面的PHP代碼塊從HTML(網(wǎng)頁)生成PDF。此腳本需要為Apache啟用shell_exec函數(shù)。大多數(shù)共享主機(jī)不允許此函數(shù)。
使用下面的代碼創(chuàng)建一個(gè)文件名getpdf.php,并將其放到網(wǎng)站文檔根目錄中。
<?php $url = $_GET['url']; // Website URL to Create pdf $name = $_GET['pdf']; // Output pdf name $command = "/usr/bin/wkhtmltopdf "; $pdf_dir = "/var/www/html/pdfs/"; // Pdf files will be saved here $ex_cmd = "$command $url " . $pdf_dir . $name; $output = shell_exec($ex_cmd); ?>
以上是使用Qtwebkit和PHP將HTML轉(zhuǎn)換為PDF的方法的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!