Convert Word doc, docx and Excel xls, xlsx to PDF with PHP
使用正确的附件格式,如.doc、.pdf而非.jpg #生活技巧# #沟通技巧# #邮件礼仪#
Well my 2 cents when it comes to the topic word 2007 docx, word 97-2004 doc, pdf and all other types of MS Office wishing to be "converted from y to z but in real they don't wanna be". In my experience so far, conversion with LibreOffice or OpenOffice can't be relied on. Though .doc documents tend to be better supported than word 2007's .docx. In general it's very hard to convert the .docx to .doc without breaking anything.
.docx also tend to be extremely useful for templating where .doc is not for being binary.
The conversion from .doc to PDF was most of the time quite reliable. If you can still influence the design or content of the word document then this might be satisfying, but in my situation documents were supplied from foreign companies where even after generating the .docx templates, in some scenario's, the generated .docx had to be slightly modified with supplement text before it was generated to a PDF.
WINDOWS BASED!
All this hiccup made me come to the conclusion that the only true reliable conversion method I found was using the COM class in PHP and let the MS Word or Excel Application do all the work for you. I'll just give an example on converting .docx to .doc and/or PDF. If you do not have MS Office installed, you can download a trial version of 60 days which would give you enough room for testing purposes.
the COM.net extension is by default commented out in the php.ini, just search for the line php_com_dotnet.dll and uncomment it like so
extension=php_com_dotnet.dll
Restart the web server (IIS is not a pre, Apache will work just as well).
The code below is a demonstration on how easy it is.
$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'); // save it as word 2003 $word->ActiveDocument->SaveAs('newdocument.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); // quit the Word process $word->Quit(false); // clean up unset($word);
This is just a small demonstration. I can just say that if it comes to conversion, this was the only real reliable option I could use and even recommend.
网址:Convert Word doc, docx and Excel xls, xlsx to PDF with PHP https://klqsh.com/news/view/344708
相关内容
PDF转Word转换器PDF转换器 – 在线免费转换PDF文件
Use AI Actions in File Explorer in Windows 11
Centimeters to feet and inches converter, Convert between cm and ft
好书推荐卡模板word和excel版免费下载(共6款精选模板)
Find your files in Windows
Convert United States Dollars (USD) and Euros (EUR): Currency Exchange Rate Conversion Calculator
Convert m to cm
Convert cm to feet and inches
Switching to Microsoft 365 Personal and Family Classic Plans
随便看看
- 心理励志类
- 上进艾登2a9:#送给自己一句励志文案##自我清醒最重要# #励志人生指南# **'从‘心灵鸡汤’到‘心理疫苗’:当代人为何需要给自己定制励志文案?** 在微博#励志文案#话题累计阅读量破380亿次、抖音“自我激励”类视频日均播放超7亿的今天,年轻人正掀起一场独特的心理自救运动——给自己发送励志文案,已成为Z世代的新型“精神充电”仪式。 **数字时代的心理代偿机制** 心理学研究...
- 20部必读的心理励志经典.doc
- 励志书籍热门心理学励志书籍推荐.doc
- ANA 心理励志类新书推荐:《情感急救:对待失败、抛弃、罪恶和其他日常心理创伤的实际策略》/ Emotional First Aid by Guy Winch, Ph.D.

