美文网首页
libreoffice转换文件格式

libreoffice转换文件格式

作者: 清晨起床敲代码 | 来源:发表于2019-04-08 11:33 被阅读0次

通过下面的一行命令,把xxxx.html转换成xxxx.docx

libreoffice --headless --convert-to docx:"Office Open XML Text" xxxx.html

如果想要用python来执行这个命令的话:

 import subprocess
 subprocess.call([‘'libreoffice ‘,  ‘--headless‘, ‘--convert-to‘, ‘docx:Office Open XML Text‘, ‘xxxx.html‘])

可转换 :

libreoffice  --headless --convert-to <file_type> xxx.docx

<file_type>可以是 txt ,html, pdf, jpg等
其他格式也可以转换的,功能强大,跨平台使用相当方便。

相关文章

网友评论

      本文标题:libreoffice转换文件格式

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