美文网首页
centos7下安装LibreOffice DOC转HTML

centos7下安装LibreOffice DOC转HTML

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

    在命令行执行libreoffice --version,检查是否已经安装LibreOffice。

    一、在centos7下安装LibreOffice,可直接使用yum安装即可,在命令行输入以下命令:

    yum install libreoffice
    yum install libreoffice-headless

    安装完成后,生成的二进制文件所在位置为:

    /usr/bin/libreoffice

    二、通过libreoffice转换pdf文档,执行以下命令即可转换文档:

    soffice --headless --convert-to pdf {文档路径} --outdir {导出目录路径}

    三、通过php进行文档转换:

    $retval=1;
    // exec() might be disabled
    $cmd='export HOME=/tmp/ && /usr/bin/libreoffice --headless --convert-to pdf 1.doc --outdir ./';
    if(function_exists('exec')){
    @exec($cmd,$output,$retval);
    }
    // Did it work?
    if($retval>0){
    exit('process_failed');
    }
    echo'success';

    相关文章

      网友评论

          本文标题:centos7下安装LibreOffice DOC转HTML

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