Dart API Referencedart:htmlSVGFECompositeElement

SVGFECompositeElement Interface

Two input images are joined by means of an operator applied to each input pixel together with an arithmetic operation

result = k1*in1*in2 + k2*in1 + k3*in2 + k4

Extends

SVGFilterPrimitiveStandardAttributes, SVGElement

Static Fields

Code final int SVG_FECOMPOSITE_OPERATOR_ARITHMETIC #

static final int SVG_FECOMPOSITE_OPERATOR_ARITHMETIC = 6;

Code final int SVG_FECOMPOSITE_OPERATOR_ATOP #

static final int SVG_FECOMPOSITE_OPERATOR_ATOP = 4;

Code final int SVG_FECOMPOSITE_OPERATOR_IN #

static final int SVG_FECOMPOSITE_OPERATOR_IN = 2;

Code final int SVG_FECOMPOSITE_OPERATOR_OUT #

static final int SVG_FECOMPOSITE_OPERATOR_OUT = 3;

Code final int SVG_FECOMPOSITE_OPERATOR_OVER #

static final int SVG_FECOMPOSITE_OPERATOR_OVER = 1;

Code final int SVG_FECOMPOSITE_OPERATOR_UNKNOWN #

static final int SVG_FECOMPOSITE_OPERATOR_UNKNOWN = 0;

Code final int SVG_FECOMPOSITE_OPERATOR_XOR #

static final int SVG_FECOMPOSITE_OPERATOR_XOR = 5;

Fields

Code final SVGAnimatedString in1 #

final SVGAnimatedString in1;

Code final SVGAnimatedString in2 #

final SVGAnimatedString in2;

Code final SVGAnimatedNumber k1 #

final SVGAnimatedNumber k1;

Code final SVGAnimatedNumber k2 #

final SVGAnimatedNumber k2;

Code final SVGAnimatedNumber k3 #

final SVGAnimatedNumber k3;

Code final SVGAnimatedNumber k4 #

final SVGAnimatedNumber k4;

Code final SVGAnimatedEnumeration operator #

final SVGAnimatedEnumeration operator;

This page includes content from the Mozilla Foundation that is graciously licensed under a Creative Commons: Attribution-Sharealike license. Mozilla has no other association with Dart or dartlang.org. We encourage you to improve the web by contributing to The Mozilla Developer Network.