Giter Site home page Giter Site logo

nodepdf's Introduction

NodePDF

Down and dirty PDF rendering in Node.js

Build Status

Installation

npm install nodepdf

Dependencies

  1. PhantomJS

Contsructor API

You can use NodePDF two ways, one is using a contstructor that returns an instance of EventEmitter.

var NodePDF = require('nodepdf');

// last argument is optional, sets the width and height for the viewport to render the pdf from. (see additional options)
var pdf = new NodePDF('http://www.google.com', 'google.pdf', {
	'viewportSize': {
		'width': 1440,
		'height': 900
	}, 
	'args': '--debug=true'
});

pdf.on('error', function(msg){
	console.log(msg);
});

pdf.on('done', function(pathToFile){
	console.log(pathToFile);
});

// listen for stdout from phantomjs
pdf.on('stdout', function(stdout){
	 // handle
});

// listen for stderr from phantomjs
pdf.on('stderr', function(stderr){
	// handle
});

Or set the content directly instead of using a URL:

var pdf = new NodePDF(null, 'google.pdf', {
	'content': '<html><body><img src="https://www.google.com/images/srpr/logo11w.png" alt="google"/></body></html>',
	'viewportSize': {
		'width': 1440,
		'height': 900
	},
});

You can set the header and footer contents as well:

var NodePDF = require('nodepdf');
var pdf = new NodePDF('http://yahoo.com', 'yahoo.pdf', {
	'viewportSize': {
		'width': 3000,
		'height': 9000
	},
	'paperSize': {
		'pageFormat': 'A4',
		'margin': {
			'top': '2cm'
		},
		'header': {
			'height': '1cm',
			'contents': 'HEADER {currentPage} / {pages}' // If you have 2 pages the result looks like this: HEADER 1 / 2
		},
		'footer': {
			'height': '1cm',
			'contents': 'FOOTER {currentPage} / {pages}'
		}
	},
	'outputQuality': '80'
	'zoomFactor': 1.1
});

Callback API

The callback API follows node standard callback signatures using the render() method.

var NodePDF = require('nodepdf');

// options is optional, sets the width and height for the viewport to render the pdf from. (see additional options)
NodePDF.render('http://www.google.com', 'google.pdf', options, function(err, filePath){
	// handle error and filepath
});

// use default options
NodePDF.render('http://www.google.com', 'google.pdf', function(err, filePath){
	// handle error and filepath
});

As soon the content option is set, the URL is ignored even if you set one.

Options + Defaults

{
	'viewportSize': {
		'width': 2880,
		'height': 1440
	},
	'paperSize': {
		'format': 'A4',
		'orientation': 'portrait',
		'margin': {
			'top': '1cm',
			'right': '1cm',
			'bottom': '1cm',
			'left': '1cm'
		}
	},
	'outputQuality': '80' //set embedded image quality 0 - 100
	'zoomFactor': 1,
	'args': '',
	'captureDelay': 400

}

You can set all the properties from here: http://phantomjs.org/api/webpage/

Cookies

var NodePDF = require('nodepdf');
var pdf = new Pdf('http://yahoo.com', 'yahoo.pdf', {
	'cookies': [
		{
			'name':     'Valid-Cookie-Name 1',   /* required property */
			'value':    'Valid-Cookie-Value 1',  /* required property */
			'domain':   'localhost',           /* required property */
			'path':     '/foo',
			'httponly': true,
			'secure':   false,
			'expires':  (new Date()).getTime() + (1000 * 60 * 60)   /* <-- expires in 1 hour */
		},
		{
			'name':     'Valid-Cookie-Name 2',
			'value':    'Valid-Cookie-Value 2',
			'domain':   'localhost'
		}
	]
});

PhantomJS Cookie Object description: http://phantomjs.org/api/webpage/property/cookies.html

License

(The MIT License)

Copyright (c) 2013 TJ Krusinski <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

nodepdf's People

Contributors

bromanko avatar emadow avatar mbelshe avatar mk-pmb avatar n3o77 avatar robbschiller avatar russmatney avatar smithatlanta avatar tjkrusinski avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.