Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added functionality to pass pdftotext options #114

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,15 @@
Installation:
gem install docsplit

Added the options:
pdf_opts: which can be used to passed the pdftotext binary file options to docsplit gem
For Example:
Passing raw options to pdftotext,
Docsplit.extract_text(path, {:pdf_opts => '-raw'})

For documentation, usage, and examples, see:
http://documentcloud.github.com/docsplit/

To suggest a feature or report a bug:
http://github.com/documentcloud/docsplit/issues/

15 changes: 12 additions & 3 deletions lib/docsplit/text_extractor.rb
Original file line number Diff line number Diff line change
Expand Up @@ -103,14 +103,22 @@ def run(command)
# Extract the full contents of a pdf as a single file, directly.
def extract_full(pdf)
text_path = File.join(@output, "#{@pdf_name}.txt")
run "pdftotext -enc UTF-8 #{ESCAPE[pdf]} #{ESCAPE[text_path]} 2>&1"
unless @pdf_txt_opts.empty?
run "pdftotext -enc UTF-8 #{@pdf_txt_opts} #{ESCAPE[pdf]} #{ESCAPE[text_path]} 2>&1"
else
run "pdftotext -enc UTF-8 #{ESCAPE[pdf]} #{ESCAPE[text_path]} 2>&1"
end
end

# Extract the contents of a single page of text, directly, adding it to
# the `@pages_to_ocr` list if the text length is inadequate.
def extract_page(pdf, page)
text_path = File.join(@output, "#{@pdf_name}_#{page}.txt")
run "pdftotext -enc UTF-8 -f #{page} -l #{page} #{ESCAPE[pdf]} #{ESCAPE[text_path]} 2>&1"
unless @pdf_txt_opts.empty?
run "pdftotext -enc UTF-8 -f #{page} -l #{page} #{@pdf_txt_opts} #{ESCAPE[pdf]} #{ESCAPE[text_path]} 2>&1"
else
run "pdftotext -enc UTF-8 -f #{page} -l #{page} #{ESCAPE[pdf]} #{ESCAPE[text_path]} 2>&1"
end
unless @forbid_ocr
@pages_to_ocr.push(page) if File.read(text_path).length < MIN_TEXT_PER_PAGE
end
Expand All @@ -123,8 +131,9 @@ def extract_options(options)
@forbid_ocr = options[:ocr] == false
@clean_ocr = !(options[:clean] == false)
@language = options[:language] || 'eng'
@pdf_txt_opts = options[:pdf_opts] || ''
end

end

end
end
6 changes: 5 additions & 1 deletion test/unit/test_extract_text.rb
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,9 @@ def test_name_escaping_while_extracting_text
Docsplit.extract_text('test/fixtures/PDF file with spaces \'single\' and "double quotes".pdf', :pages => 'all', :output => OUTPUT)
assert Dir["#{OUTPUT}/*.txt"].length == 2
end


def test_name_escaping_while_extracting_text_with_pdf_opts
Docsplit.extract_text('test/fixtures/PDF file with spaces \'single\' and "double quotes".pdf', {:pages => 'all', :output => OUTPUT, :pdf_opts => '-raw'})
assert Dir["#{OUTPUT}/*.txt"].length == 2
end
end