grunt-image-sequencer
Grunt Integration for Image Sequencer Library. See https://github.com/image-sequencer
Getting Started
This plugin requires Grunt ~0.4.5
You should also have image-sequencer installed
npm install -g image-sequencer
If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
npm install grunt-image-sequencer --save-dev
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
grunt.loadNpmTasks('grunt-image-sequencer');
The "image_sequencer" task
Overview
In your project's Gruntfile, add a section named image_sequencer
to the data object passed into grunt.initConfig()
.
grunt.initConfig({
image_sequencer: {
options: {
steps: ,
config:
},
files: [
{
src: [],
dest:
}
]
},
});
Options
options.steps
Type: String
Default value: ""
A string which defines the sequence that should be applied to images
Example:
"invert brightness ndvi"
###options.config
Type: 'Object'
Default value: {}
An object which contains the inputs for steps, if some are missing they can be entered at runtime
Usage Examples
grunt.initConfig({
image_sequencer: {
options: {
steps: 'invert'
},
files: [
{dest: 'dist',src: ['src/*.png','src/*.jpg']}
]
}
});
Contributing
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.
Release History
(Nothing yet)