Sha256: 4d87fbfc4cee4d2b8645ca61b85a61b2f93c2e9f342fd68df156ded33c655400

Contents?: true

Size: 1.19 KB

Versions: 23

Compression:

Stored size: 1.19 KB

Contents

/**
 * phantomjs script for printing presentations to PDF.
 *
 * Example:
 * phantomjs print-pdf.js "http://lab.hakim.se/reveal-js?print-pdf" reveal-demo.pdf
 *
 * By Manuel Bieh (https://github.com/manuelbieh)
 */

// html2pdf.js
var page = new WebPage();
var system = require( 'system' );

var slideWidth = system.args[3] ? system.args[3].split( 'x' )[0] : 960;
var slideHeight = system.args[3] ? system.args[3].split( 'x' )[1] : 700;

page.viewportSize = {
	width: slideWidth,
	height: slideHeight
};

// TODO
// Something is wrong with these config values. An input
// paper width of 1920px actually results in a 756px wide
// PDF.
page.paperSize = {
	width: Math.round( slideWidth * 2 ),
	height: Math.round( slideHeight * 2 ),
	border: 0
};

var inputFile = system.args[1] || 'index.html?print-pdf';
var outputFile = system.args[2] || 'slides.pdf';

if( outputFile.match( /\.pdf$/gi ) === null ) {
	outputFile += '.pdf';
}

console.log( 'Printing PDF (Paper size: '+ page.paperSize.width + 'x' + page.paperSize.height +')' );

page.open( inputFile, function( status ) {
	window.setTimeout( function() {
		console.log( 'Printed succesfully' );
		page.render( outputFile );
		phantom.exit();
	}, 1000 );
} );

Version data entries

23 entries across 22 versions & 7 rubygems

Version Path
slippery-0.4.2 assets/reveal.js/plugin/print-pdf/print-pdf.js
reveal-ck-3.6.0 files/reveal.js/plugin/print-pdf/print-pdf.js
reveal-ck-3.5.1 files/reveal.js/plugin/print-pdf/print-pdf.js
reveal-ck-3.5.0 files/reveal.js/plugin/print-pdf/print-pdf.js
reveal-ck-3.4.0 files/reveal.js/plugin/print-pdf/print-pdf.js
reveal-ck-3.3.1 files/reveal.js/plugin/print-pdf/print-pdf.js
dyndoc-ruby-0.3.0 share/etc/pandoc/extra/reveal.js-3.1.0/plugin/print-pdf/print-pdf.js
dyndoc-ruby-0.3.0 share/etc/pandoc/extra/reveal.js-3.0.0/plugin/print-pdf/print-pdf.js
reveal-ck-3.3.0 files/reveal.js/plugin/print-pdf/print-pdf.js
reveal.rb-0.4.0 lib/reveal/templates/revealjs/plugin/print-pdf/print-pdf.js
slidemgr-1.0.3 lib/template/reveal.js-3.0.0/plugin/print-pdf/print-pdf.js
slidemgr-1.0.2 lib/template/reveal.js-3.0.0/plugin/print-pdf/print-pdf.js
slidemgr-1.0.1 lib/template/reveal.js-3.0.0/plugin/print-pdf/print-pdf.js
reveal-ck-3.2.0 files/reveal.js/plugin/print-pdf/print-pdf.js
slideparts-0.0.1 lib/slide_template/plugin/print-pdf/print-pdf.js
reveal-ck-3.1.0 files/reveal.js/plugin/print-pdf/print-pdf.js
slide_hero-0.0.10 vendor/reveal.js/plugin/print-pdf/print-pdf.js
reveal-ck-3.0.1 files/reveal.js/plugin/print-pdf/print-pdf.js
slide_hero-0.0.9 vendor/reveal.js/plugin/print-pdf/print-pdf.js
reveal-ck-3.0.0 files/reveal.js/plugin/print-pdf/print-pdf.js