Sha256: 475f213937c7babbcf5e6a714d04d05051a73e1caddf63884bd3c3bd8478bcf4

Contents?: true

Size: 1.45 KB

Versions: 2

Compression:

Stored size: 1.45 KB

Contents

# Render Multiple URLs to file
# FIXME: For now it is fine with pure domain names: don't think it would work with paths and stuff like that

system = require 'system'

# Extend the Array Prototype with a 'foreach'
Array.prototype.forEach = (action) ->
    for i, j in this
        action j, i, _len

# Render a given url to a given file
# @param url URL to render
# @param file File to render to
# @param callback Callback function
renderUrlToFile = (url, file, callback) ->
    page = require('webpage').create()
    page.viewportSize = { width: 800, height : 600 }
    page.settings.userAgent = 'Phantom.js bot'

    page.open url, (status) ->
       if status isnt 'success'
           console.log "Unable to render '#{url}'"
       else
           page.render file

       delete page
       callback url, file

# Read the passed args
if system.args.length > 1
    arrayOfUrls = Array.prototype.slice.call system.args, 1
else
    # Default (no args passed)
    console.log 'Usage: phantomjs render_multi_url.coffee [domain.name1, domain.name2, ...]'
    arrayOfUrls = [
      'www.google.com',
      'www.bbc.co.uk',
      'www.phantomjs.org'
    ]

# For each URL
arrayOfUrls.forEach (pos, url, total) ->
    file_name = "./#{url}.png"

    # Render to a file
    renderUrlToFile "http://#{url}", file_name, (url, file) ->
        console.log "Rendered '#{url}' at '#{file}'"
        if pos is total - 1
            # Close Phantom if it's the last URL
            phantom.exit()

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
phantomjs.rb-0.0.2 vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/render_multi_url.coffee
phantomjs.rb-0.0.1 vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/render_multi_url.coffee