What does PorterDuff.Mode mean in android graphics.What does it do?
Asked Answered
G

2

160

I would like to know what PorterDuff.Mode means in android graphics.

I know that it is a transfer mode.

I also know, that it has attributes such as DST_IN, Multiply etc.

Guillen answered 26/11, 2011 at 16:56 Comment(1)
from my recent discovery. if you have overlapping images and try to change the color filter of one of them, it afffects the other image that is overlapping it!Delastre
Q
358

Here's an excellent article with illustrations by a Google engineer:

http://ssp.impulsetrain.com/porterduff.html

PorterDuff is described as a way of combining images as if they were "irregular shaped pieces of cardboard" overlayed on each other, as well as a scheme for blending the overlapping parts.

The default Android way of composing images is PorterDuff.Mode.SRC_OVER, which equates to drawing the source image/color over the target image. In other words, it does what you would expect and draws the source image (the one you're drawing) on top of the destination image (the canvas) with the destination image showing through to the degree defined by the source image's alpha.

PorterDuff infographic from the article

You can use the key below to understand the algebra that the Android docs use to describe the other modes (see the article for a fuller desription with similar terms).

  • Sa Source alpha
  • Sc Source color
  • Da Destination alpha
  • Dc Destination color

Where alpha is a value [0..1], and color is substituted once per channel (so use the formula once for each of red, green and blue)

The resulting values are specified as a pair in square braces as follows.

[<alpha-value>,<color-value>]

Where alpha-value and color-value are formulas for generating the resulting alpha chanel and each color chanel respectively.

Qualified answered 3/9, 2014 at 22:27 Comment(0)
V
5

It defines how to compose images based on the alpha value. See more here http://en.wikipedia.org/wiki/Alpha_compositing

Vinificator answered 14/4, 2013 at 7:57 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.