Pdf

從 scanimage –batch 掃描的多個圖像中編譯 pdf 文件

  • April 30, 2017

假設我正在掃描具有以下內容的文件圖像:

scanimage --mode Gray --resolution 300 -x 215 -y 280 --format=tiff \
   --batch=document-p%d.tiff --batch-prompt

(在範例中我使用了.tiff格式,但我對任何可行的方法都持開放態度。)

將單獨的圖像文件編譯成單個 PDF 文件的最簡單方法是什麼?

使用 ImageMagick 可能是最簡單的方法:

convert document-p*.tiff output.pdf

試試這個。

scanimage -p --resolution 250 --mode Gray -x 210 -y 297 | pnmtops -imageheight 11.7 -imagewidth 8.3 | ps2pdf - output.pdf

引用自:https://unix.stackexchange.com/questions/136619