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?

【備忘録】カレントディレクト内のpngを1つのpdfファイルとして出力する

Posted at

ターミナルを使って、カレントディレクトリ内の全てのpngを昇順で結合する。
Macの標準機能の「pdfとして結合」では、順番がぐちゃぐちゃなことがあるため、ターミナルを使用して、pdfを作成する。

find . -maxdepth 1 -name "*.png" -print0 | sort -z | xargs -0 img2pdf -o output.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?