以前有個客戶須要把一些html頁面生成pdf文件,而後我就找一些用php把html頁面圍成pdf文件的類。方法是可謂是找了不少不少,什麼html2pdf,pdflib,FPDF這些都試過了,可是都沒有達到我要的求。php
pdflib,FPDF 這兩個方法是須要編寫程序去生成pdf的,就也是講不支持直接把html頁面轉換成pdf;html2pdf這個雖然能夠把html頁面轉換成pdf文 件,可是它只能轉換通常簡單的html代碼,若是你的html內容要的是經過後臺新聞編輯器排版的那確定不行的。css
糾結了半天,什麼百度,谷歌搜索都用了,搜索了半天,功夫不負有心人,終於找到一個很是好用的方法了,下面就隆重介紹。html
它就 是:wkhtmltopdf,wkhtmltopdf能夠直接把任何一個能夠在瀏覽器中瀏覽的網頁直接轉換成一個pdf,首先說明一下它不是一個php 類,而是一個把html頁面轉換成pdf的一個軟件,可是它並非一個簡單的桌面軟件,並且它直接cmd批處理的。並且php有個 shell_exec()函數。下面就一步一步介紹如何用php來讓它生成pdf文件的方法。web
一,下載並安裝pdf
下載地址:http://code.google.com/p/wkhtmltopdf/downloads/list
上面有各類平臺下安裝的安裝包,英文很差的直接谷歌翻譯一下。下面以 windows平臺上使用舉例,個人下載的是wkhtmltopdf-0.9.9-installer.exe這個版本,我在win7 32位64位和windows 2003上安裝測試都沒有問題的。下載好之後直接安裝就能夠了,注意安裝路徑要知道,下面會用到的。
安裝好之後須要在系統環境變量變量名爲"Path"的後添加:;C:Program Files (x86)wkhtmltopdf 也就是你安裝的目錄。安裝好之後重啓電腦。shell
二,測試使用效果
直接在cmd裏輸入:wkhtmltopdf http://www.shwzzz.cn/ F:website1.pdf
第一個是:運行軟件名稱(這個是不變的) 第二個是網址 第三個是生成後的路徑及文件名。回車後是否是看生一個生成進度條的提示呢,恭喜您已經成功了,到你的生成目錄裏看看是否是有一個剛生成的pdf文件呢。windows
三,php裏調用
php裏調用是很簡單的,用shell_exec這個函數就能夠了,若是shell_exec函數不能用看看php.ini裏是否補禁用了。
舉例:<?php shell_exec("wkhtmltopdf http://www.shwzzz.cn/ 1.pdf") ?>瀏覽器
三,解決分頁問題
wkhtmltopdf 很好用,但也有些不盡人意。就是當一個html頁面很長我須要在指定的地方分頁那怎麼辦呢? wkhtmltopdf 開發者在開發的時候並非沒有考慮到這一點,
例以下面這個html頁面:編輯器
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>pdf</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> </head> <style type="text/css"> *{ margin:0px; padding:0px;} div{ width:800px; height:1362px;margin:auto;} </style> <body> <div style=" background:#030"></div> <div style=" background:#033"></div> <div style=" background:#369"></div> <div style=" background:#F60"></div> <div style=" background:#F3C"></div> <div style=" background:#F0F"></div> <div style=" background:#0FF"></div> <div style=" background:#FF0"></div> <div style=" background:#00F"></div> <div style=" background:#0F0"></div> <div style=" background:#033"></div> <div style=" background:#369"></div> <div style=" background:#F60"></div> <div style=" background:#030"></div> <div style=" background:#033"></div> <div style=" background:#369"></div> <div style=" background:#F60"></div> <div style=" background:#F3C"></div> <div style=" background:#F0F"></div> <div style=" background:#0FF"></div> <div style=" background:#FF0"></div> <div style=" background:#00F"></div> <div style=" background:#0F0"></div> </body> </html>
當我把它生成pdf的時候我想讓每一個塊都是一頁,通過無數次調試pdf的一頁大約是1362px,可是越日後值就不對了,目前還不知道pdf一頁是多少像素。ide
可是wkhtmltopdf 有個很好的方法,就是在那個div的樣式後添加一個:page-break-inside:avoid;就ok了。
函數
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>pdf</title> <link href="css/style.css" rel="stylesheet" type="text/css" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> </head> <style type="text/css"> *{ margin:0px; padding:0px;} div{ width:800px; min-height:1362px;margin:auto;page-break-inside:avoid;} </style> <body> <div style=" background:#030"></div> <div style=" background:#033"></div> <div style=" background:#369"></div> <div style=" background:#F60"></div> <div style=" background:#F3C"></div> <div style=" background:#F0F"></div> <div style=" background:#0FF"></div> <div style=" background:#FF0"></div> <div style=" background:#00F"></div> <div style=" background:#0F0"></div> <div style=" background:#033"></div> <div style=" background:#369"></div> <div style=" background:#F60"></div> <div style=" background:#030"></div> <div style=" background:#033"></div> <div style=" background:#369"></div> <div style=" background:#F60"></div> <div style=" background:#F3C"></div> <div style=" background:#F0F"></div> <div style=" background:#0FF"></div> <div style=" background:#FF0"></div> <div style=" background:#00F"></div> <div style=" background:#0F0"></div> </body> </html>
http://code.google.com/p/wkhtmltopdf/這個是wkhtmltopdf問題交流平臺,可是英文的。