命令行下將 word 轉 pdf

此處只考慮了centos的系統centos

首先是安裝字體(防止你的 PDF 轉換出來是亂碼)bash

cd /usr/share/fonts
wget https://mirrors.tuna.tsinghua.edu.cn/adobe-fonts/source-han-sans/SubsetOTF/SourceHanSansCN.zip
wget https://mirrors.tuna.tsinghua.edu.cn/adobe-fonts/source-han-serif/SubsetOTF/SourceHanSerifCN.zip
unzip SourceHanSansCN.zip
unzip SourceHanSerifCN.zip
rm -rf SourceHanSerifCN.zip
rm -rf SourceHanSerifCN.zip

fc-cache -fv

安裝libreofficeless

yum install libreoffice-headless
yum install libreoffice-writer

下面是驗證是否可用字體

cd /tmp
#touch test.docx 你的word 文檔
libreoffice --headless --convert-to pdf --outdir /tmp /tmp/test.docx

可是這樣不會導出Word的批註的
若是要導出,能夠(2選1)code

  1. 打開libreoffice 手工導出pdf,選中導出批註和placeholder
  2. 加參數: --convert-to pdf:"impress_pdf_Export:ExportNotes=True:ExportNotesPages=True:ExportBookmarksToPDFDestination=True"
相關文章
相關標籤/搜索