mirror of
https://github.com/publiclab/image-sequencer.git
synced 2025-12-12 03:10:03 +01:00
* add loading spinner fallback fixes #189 Signed-off-by: tech4GT <varun.gupta1798@gmail.com> * handle testing with progress spinners Signed-off-by: tech4GT <varun.gupta1798@gmail.com> * apply fixes and improvements Signed-off-by: tech4GT <varun.gupta1798@gmail.com> * add example Signed-off-by: tech4GT <varun.gupta1798@gmail.com> * bug fixes Signed-off-by: tech4GT <varun.gupta1798@gmail.com> * resolves #189 Signed-off-by: tech4GT <varun.gupta1798@gmail.com> * fix Signed-off-by: tech4GT <varun.gupta1798@gmail.com>
62 lines
1.6 KiB
JavaScript
Executable File
62 lines
1.6 KiB
JavaScript
Executable File
/*
|
|
* Blur an Image
|
|
*/
|
|
module.exports = function Blur(options,UI){
|
|
options = options || {};
|
|
options.title = "Blur";
|
|
options.description = "Blur an Image";
|
|
options.blur = options.blur || 2
|
|
|
|
//Tell the UI that a step has been set up
|
|
UI.onSetup(options.step);
|
|
var output;
|
|
|
|
function draw(input,callback,progressObj){
|
|
|
|
progressObj.stop(true);
|
|
progressObj.overrideFlag = true;
|
|
|
|
// Tell the UI that a step is being drawn
|
|
UI.onDraw(options.step);
|
|
|
|
var step = this;
|
|
|
|
function changePixel(r, g, b, a){
|
|
return [r,g,b,a]
|
|
}
|
|
|
|
function extraManipulation(pixels){
|
|
pixels = require('./Blur')(pixels,options.blur)
|
|
return pixels
|
|
}
|
|
|
|
function output(image,datauri,mimetype){
|
|
|
|
// This output is accessible by Image Sequencer
|
|
step.output = {src:datauri,format:mimetype};
|
|
|
|
// This output is accessible by UI
|
|
options.step.output = datauri;
|
|
|
|
// Tell UI that step has been drawn.
|
|
UI.onComplete(options.step);
|
|
}
|
|
|
|
return require('../_nomodule/PixelManipulation.js')(input, {
|
|
output: output,
|
|
changePixel: changePixel,
|
|
extraManipulation: extraManipulation,
|
|
format: input.format,
|
|
image: options.image,
|
|
callback: callback
|
|
});
|
|
|
|
}
|
|
return {
|
|
options: options,
|
|
draw: draw,
|
|
output: output,
|
|
UI: UI
|
|
}
|
|
}
|