如何使用 php 将 .docx、xslx、img、txt 等任何文件转换为 PDF 预览?
Posted
技术标签:
【中文标题】如何使用 php 将 .docx、xslx、img、txt 等任何文件转换为 PDF 预览?【英文标题】:How can i convert any file like .docx,xslx,img,txt to PDF preview using php? 【发布时间】:2020-02-07 09:53:30 【问题描述】:如果我单击表格中的文档链接,我需要将任何文件转换为 PDF 预览 Table Image link
【问题讨论】:
How do I convert a PDF document to a preview image in php?的可能重复 另请查看:geeksforgeeks.org/… 【参考方案1】:此代码仅用于图像到 pdf 的转换。
如果您安装了 ImageMagick 并拥有exec
权限,
exec("convert foo.jpeg foo.pdf");
以下链接用于使用 PHP 将 Word doc、docx 和 Excel xls、xlsx 转换为 PDF
Convert Word doc, docx and Excel xls, xlsx to PDF with PHP
【讨论】:
以上是关于如何使用 php 将 .docx、xslx、img、txt 等任何文件转换为 PDF 预览?的主要内容,如果未能解决你的问题,请参考以下文章
PHP - Laravel - 将 Docx 转换为 PDF
如何使用php读取docx文件中图像的超链接以及页眉和页脚的内容?