PHP Classes

File: toastui/src/js/extension/blur.js

Recommend this page to a friend!
  Classes of Mark de Leon   PHP Document Scanner using SANE or eSCL AirPrint   toastui/src/js/extension/blur.js   Download  
File: toastui/src/js/extension/blur.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Document Scanner using SANE or eSCL AirPrint
Web interface to scan printed documents
Author: By
Last change:
Date: 4 years ago
Size: 750 bytes
 

Contents

Class file image Download
/** * @author NHN Ent. FE Development Team <dl_javascript@nhn.com> * @fileoverview Blur extending fabric.Image.filters.Convolute */ import fabric from 'fabric/dist/fabric.require'; /** * Blur object * @class Blur * @extends {fabric.Image.filters.Convolute} * @ignore */ const Blur = fabric.util.createClass(fabric.Image.filters.Convolute, /** @lends Convolute.prototype */{ /** * Filter type * @param {String} type * @default */ type: 'Blur', /** * constructor * @override */ initialize() { const matrix = [ 1 / 9, 1 / 9, 1 / 9, 1 / 9, 1 / 9, 1 / 9, 1 / 9, 1 / 9, 1 / 9 ]; this.matrix = matrix; } }); module.exports = Blur;