如何使用OpenOffice从我的PHP网页将RTF转换为PDF?

时间:2009-06-24 20:26:51

标签: php windows iis openoffice.org

我的操作系统是Windows XP,我使用的是IIS 5.1和PHP 5.2.9。我正在尝试从我的PHP页面调用PHP脚本,以便使用OpenOffice将RTF文档转换为PDF。当我直接从命令行调用它时,脚本工作正常,但是从PHP网页启动时,我没有成功获得完全相同的脚本。

当我从PHP页面调用脚本时,页面挂起,最终显示错误,我注意到我可以在任务管理器中看到soffice.bin和soffice.exe进程在我的IIS下运行用户名。

这是错误:

Fatal error: Uncaught exception 'com_exception' with message 'Failed to create COM object `com.sun.star.ServiceManager': Server execution failed ' in C:\WEB_ROOT\SoftwareContract\WordToPdf.php:14 Stack trace: #0 C:\WEB_ROOT\SoftwareContract\WordToPdf.php(14): com->com('com.sun.star.Se...') #1 C:\WEB_ROOT\SoftwareContract\Index.php(11): word2pdf('file:///C:/web_...', 'file:///C:/web_...') #2 {main} thrown in C:\WEB_ROOT\SoftwareContract\WordToPdf.php on line 14

我在这些方面仔细检查了IIS用户的权限:

C:\PHP
C:\Program Files\OpenOffice.org 3
C:\Program Files\Java
C:\WEB_ROOT ---- location for my php code

在每种情况下,我的IIS用户都具有以下权限:读取和执行,列出文件夹内容,读取。并且在每种情况下都没有检查“denys”来抵消权限。我还给了IIS用户对php代码所在的Web_Root文件夹的写权限。

这是调用转换函数的php,WordToPdf:

<?php
require_once('WordToPdf.php');

$output_dir = 'C:/web_root/softwarecontract/';
$doc_file = 'C:/web_root/softwarecontract/testdoc.rtf';
$pdf_file = 'output.pdf';
$output_file = $output_dir . $pdf_file;
$doc_file = "file:///" . $doc_file;
$output_file = "file:///" . $output_file;
word2pdf($doc_file,$output_file);
?>

这是WordToPdf.php:

<?php
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 
    $oDesktop = $osm->createInstance("com.sun.star.frame.Desktop");
    //Load the .doc file, and pass in the "Hidden" property from above
    $oWriterDoc = $oDesktop->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);
}
?>

我的权限或我需要检查IIS用户权限的任何其他区域是否有任何问题? 有没有人知道为什么IIS无法创建COM对象,如果不是权限问题?

谢谢!

2 个答案:

答案 0 :(得分:5)

耶!!!!在这里工作的超级duper brainiac的帮助下,我现在有一个实际工作的解决方案!忘记我之前发布的所有代码,我不再使用它了。如果其他人需要在IIS上将PHP文档转换为PDF,那么这将起作用:

1)安装OpenOffice,当然

2)去这里:
http://www.artofsolving.com/opensource/pyodconverter,然后下载DocumentConverter.py

3)将DocumentConverter.py放在soffice.exe所在的同一个OpenOffice文件夹中,可能是C:\ Program Files \ OpenOffice.org 3 \ program

4)将OpenOffice作为服务启动:

a)您可以从命令行执行此操作:

soffice "-accept=socket,host=localhost,port=8100;urp;StarOffice.ServiceManager" -headless -norestore -nologo -nofirststartwizard

b)或按照本网站上的说明,使用适当的参数将OpenOffice设置为Windows服务: http://www.artofsolving.com/node/10

5)从PHP运行此命令:

exec('python "C:\Program Files\OpenOffice.org 3\program\DocumentConverter.py" path_to_doc\test.doc path_to_output_pdf\test.pdf"');

是的,这是一个多么漂亮和漂亮的解决方案!

答案 1 :(得分:0)

这听起来像开放式办公室需要与桌面交互并且不允许,因为它是由没有SERVICE_INTERACTIVE_PROCESS标志的服务调用的。