PHP實(shí)現(xiàn)Word與excel等轉(zhuǎn)換pdf方法
下面是操作步驟:
1、安裝免費(fèi)的openOffice軟件,請至openoffice.org下載最新版本。
2、JDK支持,請自行搜索下載最新版本JDK。
3、安裝完openOffice后,在開始--運(yùn)行中輸入Dcomcnfg打開組件服務(wù)。在組件服務(wù)—計(jì)算機(jī)—我的電腦—DCOMP配置中,選擇
在這兩項(xiàng)上分別點(diǎn)擊右鍵屬性,打開屬性面板如下圖:
選擇安全選項(xiàng)卡,分別在啟動和激活權(quán)限和訪問權(quán)限兩項(xiàng)上點(diǎn)自定義,添加Everyone的權(quán)限。
選擇標(biāo)識選項(xiàng)卡,選擇交互式用戶。
4、安裝完openOffice后,請先打開一次確認(rèn)可以正常運(yùn)行軟件,然后退出后用命令行運(yùn)行以下命令。
先到安裝目錄下,例如:C:Program FilesOpenOffice 4program
執(zhí)行命令:
soffice -headless-accept='socket,host=127.0.0.1,port=8100;urp;' -nofirststartwizard
成功后即在后臺運(yùn)行了該軟件。
5、如果是php5.4.5以前版本,需要在php.ini里把com.allow_dcom = true打開,即去掉前面的分號。如果是以后版本,需要在php.ini 里增加一行擴(kuò)展extension=php_com_dotnet.dll,然后檢查php的ext目錄中是否存在該dll文件,如果沒有請自行下載對應(yīng)版本的dll。然后重啟apache或IIS服務(wù)器。
6、代碼實(shí)現(xiàn)
/** * office文檔轉(zhuǎn)換為PDF類 * @author jinzhonghao <954299193@qq.com> created 2015-04-23 */class office2pdf{private $osm;public function __construct(){$this->osm = new COM('com.sun.star.ServiceManager')or die ('Please be sure that OpenOffice.org is installed.n'); }public function MakePropertyValue($name,$value){$oStruct = $this->osm->Bridge_GetStruct('com.sun.star.beans.PropertyValue');$oStruct->Name = $name;$oStruct->Value = $value;return $oStruct;}public function transform($input_url, $output_url){$args = array($this->MakePropertyValue('Hidden',true));$oDesktop = $this->osm->createInstance('com.sun.star.frame.Desktop');$oWriterDoc = $oDesktop->loadComponentFromURL($input_url,'_blank', 0, $args);$export_args = array($this->MakePropertyValue('FilterName','writer_pdf_Export'));$oWriterDoc->storeToURL($output_url,$export_args);$oWriterDoc->close(true);return $this->getPdfPages($output_url);}public function run($input,$output){$input = 'file:///' . str_replace('','/',$input);$output = 'file:///' . str_replace('','/',$output);return $this->transform($input, $output);}/** * 獲取PDF文件頁數(shù)的函數(shù)獲取 * 文件應(yīng)當(dāng)對當(dāng)前用戶可讀(linux下) * @param [string] $path [文件路徑] * @return int */public function getPdfPages($path){if(!file_exists($path)) return 0;if(!is_readable($path)) return 0;// 打開文件$fp=@fopen($path,'r');if (!$fp) {return 0;}else {$max=0;while(!feof($fp)) {$line = fgets($fp,255);if (preg_match(’//Count [0-9]+/’, $line, $matches)){preg_match(’/[0-9]+/’,$matches[0], $matches2);if ($max<$matches2[0]) $max=$matches2[0];}}fclose($fp);// 返回頁數(shù)return $max;}}}
相關(guān)文章: