Skip to content

Instantly share code, notes, and snippets.

@KitaitiMakoto
Created March 23, 2015 12:26
Show Gist options
  • Save KitaitiMakoto/e78f4b11fff73d8ece48 to your computer and use it in GitHub Desktop.
Save KitaitiMakoto/e78f4b11fff73d8ece48 to your computer and use it in GitHub Desktop.
Encoding.default_external = 'UTF-8'
Encoding.default_internal = 'UTF-8'
require 'poppler'
path = ARGV.shift
unless path
$stderr.puts 'Specify PDF file'
abort
end
pdf = Poppler::Document.new(File.read(path))
0.upto(pdf.size - 1) do |i|
puts pdf[i].get_text
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment