Files
image-sequencer/src/modules/Crop/Module.js
2017-07-22 02:01:03 +05:30

46 lines
1.1 KiB
JavaScript

/*
* Image Cropping module
* Usage:
* Expected Inputs:
* options.x : x-coordinate of image where the modules starts cropping | default : 0
* options.y : y-coordinate of image where the modules starts cropping | default : 0
* options.w : width of the resulting cropped image | default : 50% of input image width
* options.h : height of the resulting cropped image | default : 50% of input image height
* Output:
* The cropped image, which is essentially a rectangle bounded by the lines:
* x = options.x
* x = options.x + options.w
* y = options.y
* y = options.y + options.h
*/
module.exports = function CropModule(options,UI) {
options = options || {};
options.title = "Crop Image";
UI.setup();
var output
function draw(input,callback) {
UI.drawing();
const this_ = this;
require('./Crop')(input,options,function(out,format){
this_.output = {
src: out,
format: format
}
UI.drawn(out);
callback();
});
}
return {
options: options,
draw: draw,
output: output,
UI: UI
}
}