Skip to content

Instantly share code, notes, and snippets.

@Gottox
Created October 24, 2012 20:22
Show Gist options
  • Save Gottox/3948618 to your computer and use it in GitHub Desktop.
Save Gottox/3948618 to your computer and use it in GitHub Desktop.
Awesome PDF thumbnail creator
var pdfutils = require('pdfutils').pdfutils;
pdfutils(process.argv[2], function(doc, err) {
doc[0].asPNG({maxWidth: 200}).toFile(process.argv[3]);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment