8
8

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.

ubuntuでpdf分割やテキスト化

Last updated at Posted at 2015-04-22

画像化

pdftoppm -r 125 -png a.pdf a
pdfをpng化
convert \
 -density 600 -geometry 1000 \
 input.pdf image_%02d.png

pdf分割

3ページ目だけ抽出したい場合
pdftk hoge.pdf cat 3 output hoge_page3.pdf
1から4ページ目を抽出したい場合
pdftk hoge.pdf cat 1-4 output hoge_page1-4.pdf
全ページ-90度回転したい場合
pdftk hoge.pdf cat 1-endleft output hoge_page.pdf

テキストファイル化

hoge.txtに出力
pdftotext hoge.pdf hoge.txt
8
8
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
8
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?