美文网首页
laravel DOC DOCX转HTML ncjoes/of

laravel DOC DOCX转HTML ncjoes/of

作者: 大萝卜2022 | 来源:发表于2022-06-29 15:41 被阅读0次

首选安装组件:

composer require ncjoes/office-converter

引入组件:

use NcJoes\OfficeConverter\OfficeConverter;

示例代码:

<?php
// if you are using composer, just
use NcJoes\OfficeConverter\OfficeConverter;

$converter=newOfficeConverter('test-file.docx');
$converter->convertTo('output-file.pdf'); //在转换文件同目录生产pdf文件
$converter->convertTo('output-file.html'); //在转换文件同目录生产html文件

//需要指定目录参考下面使用,添加生产文件目录参数
$converter=newOfficeConverter('test-file.docx','path-to-outdir');
?>

相关文章

  • java doc/docx 转HTML

    doc 和 docx 略有不同,对于doc,可以用下面这种方式: 需要导入以下的类: 由于我做的是doc转HTML...

  • OpenOffice组件docx/doc转html

    OpenOffice组件docx/doc转html 准备工作 CentOS 安装OpenOffice资源准备ope...

  • ubuntu docx与markdown互转

    docx转markdown命令如下, 注意doc格式不支持。需要先把doc转为docx。 pandoc test....

  • nginx 图片跨域问题

    location ~* .(html|htm|shtml|zip|rar|doc|docx|xls|xlsx|pp...

  • ubuntu doc转docx

    sudo apt-get install libreofficelibreoffice --convert-to ...

  • doc、docx转PDF命令

    需要批量转换word文件,.doc 或者.docx结尾的文件为pdf格式。 Libreoffice是一款开源的办公...

  • centos 下将doc转docx

    由于antiword只能讲doc的文本读取出来,不能对里面的图片的资源读取,改为使用libreoffice 安装模...

  • Upload多文件上传

    HTML部分 上述accept 目前限制的类型为 docx、doc、xls、xlsx等。如需要更多类型可以参考ty...

  • 笔记

    doc文档:兼容模式 docx文档:word文档

  • .doc文档和.docx文档

    .doc文档:兼容模式 .docx文档:word文档

网友评论

      本文标题:laravel DOC DOCX转HTML ncjoes/of

      本文链接:https://www.haomeiwen.com/subject/zrwfbrtx.html