pdfium
v0.0.1
Published
Node.js/iojs/node-webkit native pdfium port
Downloads
14
Readme
node-pdfium-native
Native port of PDFium to node.js, iojs and Nw.js.
The main motivation of this project is to render/convert a PDF
format direect into EMF
format, to be able to print on windows printer by using native printer module.
Methods:
getSupportedOutputFormats()
- returns an array of all supported output formats:['BPM', 'EMF', 'PNG', 'PPM']
. Note thatEMF
andBMP
formats are supported only on windows.render(options, [callback(err, pages)])
- render/convert a PDF data into one of output format fromgetSupportedOutputFormats()
. Parameters:option
(object, mandatory) may contains the following fields:data
(Buffer, mandatory) - PDF data bufferoutputFormat
(String, mandatory) - output format name. one fromgetSupportedOutputFormats()
scaleFactor
(Number, optional, default: 1.0) - scale factor of the output format.
callback(err, pages)
(function, optional) - callback function.pages
is array of buffers. If callback is mnissing, then thepages
will be returned fromrender(options)
. In case of error, a trhow exception will throw.
License:
BSD
- feel free to use and support.