1.0.2 • Published 10 years ago

pdfconcat v1.0.2

Weekly downloads
137
License
MIT
Repository
github
Last release
10 years ago

pdfconcat

Concat multiple pdfs using pdfunite in node.js. This module is a wrapper around the pdfunite command from Poppler.

Installation

npm install pdfconcat

Requirements

Poppler must be installed on your system. Make sure the command pdfunite is working.

Usage

pdfconcat = require 'pdfconcat'

pdfconcat ['input_1.pdf', 'input_2.pdf'], 'output.pdf', (err) ->

	# Your Code