1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

MacでPDFをコマンドラインで処理する

Posted at

#MacでPDFを加工する必要があったので調べたことをメモ

必要なもの

poppler
ImageMagick

popplerでPDFから画像ファイル切り出し、imagemagickで画像を加工した後、改めてPDFに結合する

インストール

brew install poppler  
brew install imagemagick  

参考にしたサイト
https://eng.shibuya24.info/entry/pdf2jpg

PDFから画像ファイル切り出し(poppler)

pdfimages -j 002.pdf test002
pdfimages -png 002.pdf test002

-jでjpeg出力、-pngでpng出力
実行するとtest002-000.jpg,test002-001.jpg,test002-002.jpg...と、ファイルが出力される。

画像の加工(imagemagick)

#サイズを半分にしてjpegに変換
convert -geometry 50% test002-000.png test002-000.jpg

#一度に処理する
for fname in test002*.png; do
> convert -geometry 50% $fname ${fname%.png}.jpg;
> done

画像をPDFに(imagemagick)

convert *.jpg 2022.pdf

他のツール(今回は使わなかった)

PDFtk
新しいMacOSだとJava版でないとインストールできないらしい

brew install pdftk-java

参考にしたサイト
https://note.com/hitoshiarakawa/n/n20c8bc3469f3

1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?