0.0.2-pre • Published 11 years ago

url2png-murally v0.0.2-pre

Weekly downloads
6
License
-
Repository
github
Last release
11 years ago

url2png

node.js library for url2png

Get your account at http://url2png.com/

Installation

$ npm install url2png

Usage

var url2png = require('url2png')('API_KEY', 'PRIVATE_KEY');

var screenshotUrl = url2png.buildURL(url, options, type);

Params

Url

Options

Type

Samples

var url2png = require('url2png')('API_KEY', 'PRIVATE_KEY');

var options = {
	viewport : '900x600',
	thumbnail_max_width : 400
}

var type = 'http';

//Get the URL
var url = url2png.buildURL('google.com' options, type);

//...or download the image to a file
var fs = require('fs');
url2png.readURL('google.com' options, type).pipe(fs.createWriteStream('google.png'));

//...or send the image in the http response
var http = require('http');
http.createServer(function (req, res) {
  if (req.url === '/google.png') {
    url2png.readURL('google.com' options, type).pipe(res)
  }
});