溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

使用Qtwebkit和PHP將HTML轉(zhuǎn)換為PDF的方法

發(fā)布時間:2020-10-19 16:15:03 來源:億速云 閱讀:179 作者:小新 欄目:編程語言

這篇文章主要介紹使用Qtwebkit和PHP將HTML轉(zhuǎn)換為PDF的方法,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

步驟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ù)共享主機不允許此函數(shù)。

使用下面的代碼創(chuàng)建一個文件名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)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI