0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

自炊で作成したjpgを1つのPDFファイルにする

Last updated at Posted at 2020-07-30

Acrobatを利用する方法

  • Acrobat Pro DCでツール->ファイルを結合

コマンドだけで行う方法

  • カレントフォルダに以下のように連番のjpgファイルのみあると仮定する。
00001.jpg 00002.jpg 00003.jpg 00004.jpg 00005.jpg 00006.jpg
  • 以下のコマンドを実行してmyoutput.pdfというファイルを作成する。
  • mogrify, pdftk
mogrify -format pdf $(ls -1 *.jpg)
pdftk $(ls -1 *.pdf) cat output myoutput.pdf
rm -f *.pdf

参考にしたページ

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?