1.0.2 • Published 9 years ago

random-image-generator v1.0.2

Weekly downloads
3
License
MIT
Repository
github
Last release
9 years ago

Random Image Generator

travis-ci.org

An npm module for generating random images. Intended for use in automated tests that require unique images.

Currently only supports generating very noisy JPEGs.

Available as both a node module in code and a command line tool.

Example

Example Random Image

Usage

JavaScript

var randomImageGenerator = require('random-image-generator'),
    fs = require('fs');

/**
 * Takes a width and height parameter
 * Returns a Buffer containing a JPEG image
 */
randomImageGenerator(800, 600, function(err, image) {
    fs.writeFile('random-image.jpg', image, function(err) {
        // done, hopefully
    });
});

Command Line

npm install -g random-image-generator

random-image-generator 800 600 > random-image.jpg
1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago