UNPKG

@canvacord/beta

Version:

Simple & easy to use image manipulation module for beginners.

26 lines (25 loc) 521 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Matrices = void 0; exports.Matrices = { EDGES: [ 0, -1, 0, -1, 4, -1, 0, -1, 0 ], BLUR: [ 1 / 9, 1 / 9, 1 / 9, 1 / 9, 1 / 9, 1 / 9, 1 / 9, 1 / 9, 1 / 9 ], SHARPEN: [ 0, -1, 0, -1, 5, -1, 0, -1, 0 ], BURN: [ 1 / 11, 1 / 11, 1 / 11, 1 / 11, 1 / 11, 1 / 11, 1 / 11, 1 / 11, 1 / 11 ] };