image-in-browser
Version:
Package for encoding / decoding images, transforming images, applying filters, drawing primitives on images on the client side (no need for server Node.js)
37 lines (36 loc) • 810 B
TypeScript
/** @format */
/**
* Enum representing different blend modes.
*/
export declare enum BlendMode {
/** Direct blend mode */
direct = 0,
/** Alpha blend mode */
alpha = 1,
/** Lighten blend mode */
lighten = 2,
/** Screen blend mode */
screen = 3,
/** Dodge blend mode */
dodge = 4,
/** Addition blend mode */
addition = 5,
/** Darken blend mode */
darken = 6,
/** Multiply blend mode */
multiply = 7,
/** Burn blend mode */
burn = 8,
/** Overlay blend mode */
overlay = 9,
/** Soft light blend mode */
softLight = 10,
/** Hard light blend mode */
hardLight = 11,
/** Difference blend mode */
difference = 12,
/** Subtract blend mode */
subtract = 13,
/** Divide blend mode */
divide = 14
}