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


Posted in PHP onJune 10, 2019

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

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

$word = new COM("Word.Application") or die ("Could not initialise Object.");
// set it to 1 to see the MS Word window (the actual opening of the document)
$word->Visible = 0;
// recommend to set 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\1.txt这样的地址才通过
// save it as word 2003
$word->ActiveDocument->SaveAs('newdocument.doc');//转换成doc格式
// convert word 2007-2013 to PDF
$word->ActiveDocument->ExportAsFixedFormat('yourdocument.pdf', 17, false, 0, 0, 0, 0, 7, true, true, 2, true, true, false);//转换为pdf模式
// quit the Word process
$word->Quit(false);
// clean up
unset($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 initialise Object.");
 // set it to 1 to see the MS Word window (the actual opening of the document)
 $word->Visible = 0;
 // recommend to set 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, false, 0, 0, 0, 0, 7, true, true, 2, true, true, false);
 // quit the Word process
 $word->Quit(false);
 // clean up
 unset($word);
}

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

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

PHP 相关文章推荐
无数据库的详细域名查询程序PHP版(4)
Oct 09 PHP
php学习 字符串课件
Jun 15 PHP
php 文件上传代码(限制jpg文件)
Jan 05 PHP
PHP setcookie指定domain参数后,在IE下设置cookie失效的解决方法
Sep 09 PHP
PHP中call_user_func_array()函数的用法演示
Feb 05 PHP
PHP无限分类(树形类)的深入分析
Jun 02 PHP
Win下如何安装PHP的APC拓展
Aug 07 PHP
ThinkPHP CURD方法之field方法详解
Jun 18 PHP
destoon首页调用求购供应信息的地区名称的方法
Aug 21 PHP
Symfony2创建页面实例详解
Mar 18 PHP
PHP读取文件的常见几种方法
Nov 03 PHP
PHP MYSQL简易交互式站点开发
Dec 27 PHP
php简单计算权重的方法示例【适合抽奖类应用】
Jun 10 #PHP
PHP7实现和CryptoJS的AES加密方式互通示例【AES-128-ECB加密】
Jun 08 #PHP
php使用scandir()函数扫描指定目录下所有文件示例
Jun 08 #PHP
php中目录操作opendir()、readdir()及scandir()用法示例
Jun 08 #PHP
php中字符串和整数比较的操作方法
Jun 06 #PHP
使用PHPWord生成word文档的方法详解
Jun 06 #PHP
php/JS实现的生成随机密码(验证码)功能示例
Jun 06 #PHP
You might like
php之字符串变相相减的代码
2007/03/19 PHP
PHP安全下载文件的方法
2016/04/07 PHP
PHP7 foreach() 函数修改
2021/03/09 PHP
javascript flash下fromCharCode和charCodeAt方法使用说明
2008/01/12 Javascript
JQUERY复选框CHECKBOX全选,取消全选
2008/08/30 Javascript
extjs 学习笔记(三) 最基本的grid
2009/10/15 Javascript
js 实现菜单左右滚动显示示例介绍
2013/11/21 Javascript
JS cookie中文乱码解决方法
2014/01/28 Javascript
jQuery简介_动力节点Java学院整理
2017/07/04 jQuery
echarts设置图例颜色和地图底色的方法实例
2018/08/01 Javascript
7个好用的JavaScript技巧分享(译)
2019/05/07 Javascript
js+cavans实现图片滑块验证
2020/09/29 Javascript
[02:02:38]VG vs Mineski Supermajor 败者组 BO3 第一场 6.6
2018/06/07 DOTA
python sys.argv[]用法实例详解
2018/05/25 Python
Python饼状图的绘制实例
2019/01/15 Python
理想高通滤波实现Python opencv示例
2019/01/30 Python
详解Python3 对象组合zip()和回退方式*zip
2019/05/15 Python
Kali Linux安装ipython2 和 ipython3的方法
2019/07/11 Python
python打印9宫格、25宫格等奇数格 满足横竖斜相加和相等
2019/07/19 Python
python 通过邮件控制实现远程控制电脑操作
2020/03/16 Python
django ListView的使用 ListView中获取url中的参数值方式
2020/03/27 Python
预订奥兰多和佛罗里达州公园门票:FloridaTix
2018/01/03 全球购物
意大利和国际最佳时尚品牌:Drestige
2019/12/28 全球购物
印度电子产品购物网站:Vijay Sales
2021/02/16 全球购物
如何开发安全的AJAX应用
2014/03/26 面试题
邹越感恩父母演讲稿
2014/08/28 职场文书
党员演讲稿
2014/09/04 职场文书
党支部审查意见
2015/06/02 职场文书
2016年秋季新学期致辞
2015/07/30 职场文书
《月球之谜》教学反思
2016/02/20 职场文书
残联2016年全国助残日活动总结
2016/04/01 职场文书
班组长如何制订适合本班组的工作计划?
2019/07/10 职场文书
Go语言实现Snowflake雪花算法
2021/06/08 Golang
React Fragment介绍与使用详解
2021/11/11 Javascript
nginx常用配置conf的示例代码详解
2022/03/21 Servers
Golang 切片(Slice)实现增删改查
2022/04/22 Golang