命令列下將 word 轉 pdf

ARGUS發表於2018-07-20

此處只考慮了centos的系統

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

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

安裝libreoffice

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)

  1. 開啟libreoffice 手工匯出pdf,選中匯出批註和placeholder
  2. 加引數: --convert-to pdf:"impress_pdf_Export:ExportNotes=True:ExportNotesPages=True:ExportBookmarksToPDFDestination=True"

相關文章