php openoffice,php实现openoffice转pdf的方法

php实现openoffice转pdf的方法

发布时间:2020-08-28 09:49:11

来源:亿速云

阅读:69

作者:小新

小编给大家分享一下php实现openoffice转pdf的方法,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!php openoffice转pdf的方法:首先下载“openoffice4.1.2”;然后将用户的访问权限为“允许”,并将标识调整为交互式;最后在php环境下运行代码为“function MakePropertyValue(){}”即可。

0ba6eca8f6b7f87be67a05f2f8c374db.png

php操作openoffice把文件转换成pdf

1.上官网, http://www.openoffice.org。下载openoffice4.1.2

‍  2.设置权限

cmd 运行Dcomcnfg.exe->组件服务->计算机->我的电脑->DCOM配置->OpenOffice Service Manager

3.打开openoffice   在进程中查看打开此进程的用户是谁  然后设置此用户的访问权限为允许;

然后将标识调整为交互式;

4.在php环境下运行此代码<?php

/**

* Author: 宇翔大魔王

* Date: 17-1-6

* Time: 下午2:25

* TOpdf

*/

set_time_limit(0);

function MakePropertyValue($name,$value,$osm){

$oStruct = $osm->Bridge_GetStruct("com.sun.star.beans.PropertyValue");

$oStruct->Name = $name;

$oStruct->Value = $value;

return $oStruct;

}

function word2pdf($doc_url, $output_url){

//Invoke the OpenOffice.org service manager

$osm = new COM("com.sun.star.ServiceManager") or die ("Please be sure that OpenOffice.org is installed.\n");

//Set the application to remain hidden to avoid flashing the document onscreen

$args = array(MakePropertyValue("Hidden",true,$osm));

//Launch the desktop

$top = $osm->createInstance("com.sun.star.frame.Desktop");

//Load the .doc file, and pass in the "Hidden" property from above

$oWriterDoc = $top->loadComponentFromURL($doc_url,"_blank", 0, $args);

//Set up the arguments for the PDF output

$export_args = array(MakePropertyValue("FilterName","writer_pdf_Export",$osm));

//Write out the PDF

$oWriterDoc->storeToURL($output_url,$export_args);

$oWriterDoc->close(true);

}

$doc_file = "file:///D:/wamp/www/study/phpr/201701/11.doc";

$output_file = 'file:///D:/wamp/www/study/phpr/201701/11.pdf';

word2pdf($doc_file,$output_file);

?>

注意: 易错点:

1.php首先得开启com组件

php5.45之前在php.ini设置com.allow_dcom = true

php5.45之后extension=php_com_dotnet.dll

2.doc_file和output_file路径必须严格要求为

file:///D:/wamp/www/study/phpr/201701/11.pdf

以上是php实现openoffice转pdf的方法的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注亿速云行业资讯频道!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值