Skip to content

Instantly share code, notes, and snippets.

@dogoku
Forked from BinaryMuse/phantom.coffee
Created August 6, 2013 09:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dogoku/6163128 to your computer and use it in GitHub Desktop.
Save dogoku/6163128 to your computer and use it in GitHub Desktop.
#!/usr/bin/env coffee
# Call the program with: coffee phantom.coffee http://url.to/screengrab
phantom = require 'phantom' # npm install phantom
child_process = require 'child_process'
url = process.argv[2]
createScreenshot = (page, filename) ->
page.render filename, ->
child_process.exec "open #{filename}"
process.exit()
phantom.create (ph) ->
ph.createPage (page) ->
page.set 'viewportSize', width: 1000, height: 1000
page.set 'clipRect', top: 0, left: 0, width: 1000, height: 1000
console.log "Opening #{url} ..."
page.open url, (status) ->
console.log "Rendering screenshot ..."
setTimeout (-> createScreenshot(page, 'output.png')), 1000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment