Added doc for grid-overlay (#983)

This commit is contained in:
Harshith pabbati
2019-04-06 00:07:17 +05:30
committed by Jeffrey Warren
parent 0e7323efa9
commit d63aab79a6

View File

@@ -38,6 +38,7 @@ List of Module Documentations
33. [Threshold](#threshold)
34. [Tint](#tint)
35. [ColorTemperature](#color-temperature)
36. [Grid-Overlay](#grid-overlay)
## crop-module
@@ -585,3 +586,18 @@ This changes the color temperature of the image.
where `options` is an object with the following property:
* temperature : temperature between 0 - 40,000 kelvin (default 6000)
## Grid Overlay
This adds the grid over an image.
## Usage
```js
sequencer.loadImage('PATH')
.addSteps('grid-overlay',options)
.run()
```
where `options` is an object with the following property:
* options.x : The value at which the grid line should start in x-axis.
* options.y : The value at which the grid line should start in y-axis.
* color : Color for the grid on the image.