2

我正在尝试在 Windows 服务器上使用 PHP 将 .docx 文件转换为 pdf。我尝试了其他帖子中的几种解决方案,包括 phpdocx(它的转换效果很差,不保留任何格式)和 php 的 Com 对象。我只有 Office 2003,所以没有使用 Com 的 pdf 转换器。

我想过使用 OpenOffice/LibreOffice,但没有找到任何关于在 Windows 服务器上安装和使用 Com 的信息(我知道它可以安装,但我不知道如何为它设置 Com)。

由于表单上的数据(它们必须保留在我们的服务器上),使用网络服务不是一种选择。这意味着不能使用 Zend Framework。

任何建议都会有所帮助,或者有关将 Com 与 Open Office 结合使用的信息。

4

1 回答 1

2

我终于能够得到这个工作。我们的问题是 Word 2003 中没有 PDF 转换器。我们最终使用了 Office 2010 的试用版(假设一切正常,我们将购买完整版)。Word 2007 也可以。下面是我用来让它工作的代码:

                //Word Doc to PDF using Com
            ini_set("com.allow_dcom","true");

            try{
                $word = new com('word.application') or die('MS Word could not be loaded');
            }
            catch (com_exception $e)
            {
                    $nl = "<br />";
                    echo $e->getMessage() . $nl;
                    echo $e->getCode() . $nl;
                    echo $e->getTraceAsString();
                    echo $e->getFile() . " LINE: " . $e->getLine();
                    $word->Quit();
                    $word = null;
                    die;

            }

            $word->Visible = 0;
            $word->DisplayAlerts = 0;





            try{
            $doc = $word->Documents->Open(DOC_LOCATION. 'test_image.docx');
            }
            catch (com_exception $e)
            {
                $nl = "<br />";
                echo $e->getMessage() . $nl;
                echo $e->getCode() . $nl;
                echo $e->getFile() . " LINE: " . $e->getLine();
                $word->Quit();
                $word = null;
                die;
            }
            echo "doc opened";
            try{
                $doc->ExportAsFixedFormat(DOC_LOCATION . "test_image.pdf", 17, false, 0, 0, 0, 0, 7, true, true, 2, true, true, false);

            }
            catch (com_exception $e)
            {
                $nl = "<br />";
                echo $e->getMessage() . $nl;
                echo $e->getCode() . $nl;
                echo $e->getTraceAsString();
                echo $e->getFile() . " LINE: " . $e->getLine();
                $word->Quit();
                $word = null;
                die;
            }

            echo "created pdf";
            $word->Quit();
            $word = null; 
于 2012-10-16T16:00:28.843 回答