--- title: 【记录】QPDF常用命令 urlname: -ji-lu--QPDF-chang-yong-ming-ling date: 2023-09-02 12:37:29 tags: qpdf --- ## 介绍 [QPDF](https://github.com/qpdf/qpdf) 是一款开源的 PDF 操作工具。 ## 移除密码 ```powershell D:\qpdf\bin\qpdf.exe --password='A+4.3!' --decrypt '.\140802 A+外科学1-14(密码:A+4.3!).pdf' '.\140802 A+外科学1-14.pdf' ``` ## 合并文件 ```powershell D:\qpdf\bin\qpdf.exe --empty --pages *.pdf -- '140802 A+外科学.pdf' ``` ## 分割页面 ```bash qpdf --split-pages original.pdf split.pdf ```