Method: Docsplit.extract_text
- Defined in:
- lib/docsplit.rb
.extract_text(pdfs, opts = {}) ⇒ Object
Use the ExtractText Java class to write out all embedded text.
43 44 45 46 |
# File 'lib/docsplit.rb', line 43 def self.extract_text(pdfs, opts={}) pdfs = ensure_pdfs(pdfs) TextExtractor.new.extract(pdfs, opts) end |