Sha256: eebaee2b79f833decadcb3828c3c65fc7d8041640c7865ba586fd14ba299a211

Contents?: true

Size: 478 Bytes

Versions: 1

Compression:

Stored size: 478 Bytes

Contents

# PDF to text conversion:
#   Program: pdftotext
#   Version tested: 3.02
#   Installation: Ubuntu  xpdf-utils package
#   Home page: http://www.foolabs.com/xpdf/

PlainTextExtractor.new {
  every :pdf
  as "application/pdf"
  aka "Adobe Portable Document Format"
  extract_content_with "pdftotext -enc UTF-8 SOURCE -" => :on_linux_and_mac_os,
                       "some other command" => :on_windows
  which_should_for_example_extract 'in a pdf file', :from => 'basic.pdf'
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
picolena-0.2.2 lib/picolena/templates/lib/plain_text_extractors/adobe.pdf.rb