photodrawken wrote:LeviFiction wrote:Add and Subtract and division.
Aren't all the usual layer blend modes such as "Lighten", "Screen", "Multiply", etc., enhanced versions of your "Add" layer blend request?
Nope. They do similar things, but are not the same. And "Enhanced" is subjective.
"Lighten" grabs the lightest pixels between the two. r = max(Target,Blend)
"Screen" inverts both pixels, multiplies them, then inverts again r = 1 - (1-Target)(1-Blend)
"Multiply" multiplies the percentages of each color resulting in a darker color r = Target * Blend
"Add" lightens the image by adding the pixel values together and clipping the values to 255. In Photoshop this would be Linear Dodge(add) r= min(Target + Blend, 255)
"Subtract" darkens the image by subtracting the pixels from each other clipping the values to 0. r = max(Blend-Target, 0)
"Divide" would be the opposite of Multiply so technically Screen might fit that bill...and might not. r = Blend/ Target