8000 GitHub - adityaiitd/pdf-text-extract: Extract text from pdfs that contain searchable pdf text
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

adityaiitd/pdf-text-extract

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PDF Text Extract

Extract text from pdfs that contain searchable pdf text. The module calls the pdftotext command to perform the actual extraction build status Dependency Status

Installation

npm install pdf-text-extract

You will need the pdftotext binary available on your path. There are packages available for many different operating systems

Usage

var filePath = path.join(__dirname, 'test/pdf')
var extract = require('pdf-text-extract')
extract(filePath, function (err, pages) {
  if (err) {
    console.dir(err)
    return
  }
  console.dir('extracted pages', pages)
})

The output will be an array of where each entry is a page of text. If you want just a string of all pages you can do pages.join(' ')

Test

# install dev dependencies
npm install
# run tests
npm test

About

Extract text from pdfs that contain searchable pdf text

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0