Uses of Class
com.github.weisj.jsvg.attributes.filter.BlendMode
-
Packages that use BlendMode Package Description com.github.weisj.jsvg.attributes.filter com.github.weisj.jsvg.nodes.filter -
-
Uses of BlendMode in com.github.weisj.jsvg.attributes.filter
Methods in com.github.weisj.jsvg.attributes.filter that return BlendMode Modifier and Type Method Description static BlendMode
BlendMode. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static BlendMode[]
BlendMode. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of BlendMode in com.github.weisj.jsvg.nodes.filter
Methods in com.github.weisj.jsvg.nodes.filter with parameters of type BlendMode Modifier and Type Method Description static @NotNull java.awt.Composite
BlendModeComposite. create(BlendMode mode)
private static @NotNull AbstractBlendComposite.Blender
BlendModeComposite. createBlender(BlendMode blendMode)
Small letters: Premultiplied values Capital letters: Non-premultiplied values Cx = cx / Ax Alpha Compositing: Ao = As + Ab - (As * Ab) co = (1-Ab)*cs + (1-As)*cb + As*Ab*B(Cb, Cs) = (1-Ab)*cs + (1-As)*cb + As*Ab*B(cb/Ab, cs/As)Constructors in com.github.weisj.jsvg.nodes.filter with parameters of type BlendMode Constructor Description BlendModeComposite(BlendMode blendMode)
-