Sha256: 9faae54700b99761919e425bc5ea83860c960bd5374a8bfd662dfe6fbc67b330

Contents?: true

Size: 906 Bytes

Versions: 2

Compression:

Stored size: 906 Bytes

Contents

page = require('webpage').create()

if phantom.args.length < 2 or phantom.args.length > 3
  console.log 'Usage: rasterize.js URL filename [paperwidth*paperheight|paperformat]'
  console.log '  paper (pdf output) examples: "5in*7.5in", "10cm*20cm", "A4", "Letter"'
  phantom.exit()
else
  address = phantom.args[0]
  output = phantom.args[1]
  page.viewportSize = { width: 600, height: 600 }
  if phantom.args.length is 3 and phantom.args[1].substr(-4) is ".pdf"
    size = phantom.args[2].split '*'
    if size.length is 2
      page.paperSize = { width: size[0], height: size[1], border: '0px' }
    else
      page.paperSize = { format: phantom.args[2], orientation: 'portrait', border: '1cm' }
  page.open address, (status) ->
    if status isnt 'success'
      console.log 'Unable to load the address!'
      phantom.exit()
    else
      window.setTimeout (-> page.render output; phantom.exit()), 200

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
phantomjs.rb-0.0.2 vendor/phantomjs-1.4.1_OSX/examples/rasterize.coffee
phantomjs.rb-0.0.1 vendor/phantomjs-1.4.1_OSX/examples/rasterize.coffee