Skip to content

realtymaps/poppler-simple

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

poppler-simple Build Status

A simple javascript interface to poppler library.

Requirements:

  1. iconv implementation (usually included in glibc).
  2. Modern poppler library version (>= 0.18).

Install:

npm install poppler-simple

Load:

var PopplerDocument = require('poppler-simple').PopplerDocument;

Open document:

var doc = new PopplerDocument('file://' + pathToDocument);

Get a page:

var page = doc.getPage(pageNum);

Render page to a buffer in jpeg format with 75 quality and 120 DPI:

var buf = page.renderToBuffer('jpeg', 120, {'quality': 75});

For more info see test/test.js

About

A simple javascript interface to poppler library

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 70.2%
  • JavaScript 26.2%
  • C 1.9%
  • Python 1.4%
  • Makefile 0.3%