首页 > 作文

php转换上传word文件为PDF的方法【基于COM组件】

更新时间:2023-04-07 08:00:01 阅读: 评论:0

本文实例讲述了php转换上传word文件为pdf的方法。分享给大家供大家参考,具体如下:

以前用过office组件转换上传文件word同时转换为html文件,这次要将word文件转换为pdf格式,网上的方法很多,也很麻烦,也不想在服务器上再安装第三方软件,花了好几天的时间,终于在一个网站上,发现在了原来用com组件,在转换为html文件的同时,也能转换为pdf格式,而自己服务器上已经安装了office2010,这样只需要改写一下以前的几行代码就可以,代码如下:

$word = new com("word.application") or die ("could not initiali object.");// t it to 1 to e the ms word window (the actual opening of the document)$word->visible = 0;// recommend to t to 0, disables alerts like "do you want ms word to be the default .. etc"$word->displayalerts = 0;// open the word 2007-2013 document $word->documents->open('yourdocument.docx');//这个是绝对文件地址,如c:\www.txt这样的地址才通过点亮qq// save it as word 2003$word->activedocument->saveas('newdocument.doc');//转换成doc格式// convert word 2007-2013 to pdf$word->activedocument->exportasfixedformat('yourdocument.pdf', 17, fal, 0, 0, 0, 0, 7, true, true, 2, true, true, fal);//转换为pdf模式// quit the word process$word->quit(fal);// cle泗礁an upunt($word);

以上代码的原始地址:http://stackoverflow.com/questions/5538584/convert-word-doc-docx-and-excel-xls-xlsx-to-pdf-with-php

我把以上的代码做成了一个函数,代码如下:

function word2pdf($lastfnamedoc,$lastfnamepdf){  $word = new com("word.application") or die ("could not initiali object."); // t it to 1 to e the ms word wi橙子皮的功效与作用ndow (the actual opening of the document) $word->visible = 0; // recommend to t to 0, disables alerts like "do you want ms word to be the default .. etc" $word->displayalerts = 0; // open the word 2007-2013 document  // $word->documents->open('3.docx');// $wordname='d:/www/fa/3.doc';  $word->documents->open($lastfnamedoc); // save it as word 2003// $word->activedocument->saveas('4.doc'); // convert word 2007-2013 to pdf // $pdfname='d:/www/fa/3.生日贺语pdf'; $word->activedocument->exportasfixedformat($lastfnamepdf, 17, fal, 0, 0, 0, 0, 7, true, true, 2, true, true, fal); // quit the word process $word->quit(fal); // clean up unt($word);}

我的是doc文件直接换pdf文件,代码是文件的地址我服务器的全是绝对地址,否则文件通不过!

更多关于php相关内容感兴趣的读者可查看本站专题:《php操作office文档技巧总结(包括word,excel,access,ppt)》、《php数组(array)操作技巧大全》、《php数据结构与算法教程》、《php程如何关闭445端口序设计算法总结》、《php数学运算技巧总结》、《php正则表达式用法总结》、《php字符串(string)用法总结》及《php常见数据库操作技巧汇总》

希望本文所述对大家php程序设计有所帮助。

本文发布于:2023-04-07 07:59:56,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/e4424cbec8d575dcb270c89dcdf03b36.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:php转换上传word文件为PDF的方法【基于COM组件】.doc

本文 PDF 下载地址:php转换上传word文件为PDF的方法【基于COM组件】.pdf

标签:文件   转换为   代码   地址
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图