当前位置:  开发笔记 > 编程语言 > 正文

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

如何解决《如何使用OpenOffice从我的PHP网页将RTF转换为PDF?》经验,为你挑选了1个好方法。

我的操作系统是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:


这是WordToPdf.php:

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对象,如果不是权限问题?

谢谢!!



1> user115487..:

好极了!!!!在这里工作的超级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"');

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

推荐阅读
有风吹过best
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有