0
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

ここではpopplerのコマンドを使ってpdfをテキストに変換します。

popplerのインストール

qiita.rb
puts brew install poppler

デスクトップにパスを通す

qiita.rb
puts cd ~/Desktop

pdttotextコマンドを使用

qiita.rb
puts pdftotext -layout ファイル名 output_with_layout.txt

今回はレイアウトの保持のため-layoutオプションを追加しました
上ではpass.pdfというファイルを変換しているコードになります。

上記を実行すればoutput_with_layout.txtという名前のテキストファイルがデスクトップ上に生成され、PDFの内容がテキスト形式で保存されます。

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