| Layer |
Function
The Layer function incorporates most of the other layer operations, with the exception of KeyMix and AddText. There is no particular advantage to using Layer instead of one of the specific layer operations, except that you can test different modes quickly. For a list of the PhotoShop modes, see MultiLayer.
Note this is a substitute for the other Layer nodes. For more flexible layering, use the MultiLayer node.
|
Parameters
|
Type
|
Defaults
|
Function
|
| operation | string | "Over" |
The expresssion used for the composite. Possible values are: Atop - Places fg Over bg only inside of bg's mask. |
Synopsis
image Layer( image Foreground, image Background, string operation, ... );
Script
image = Layer( Foreground, Background, "operation", ... );
Command Line
Don't use Layer. Instead, use the compositing operator you want. For example, don't use -layer bg "over", enter -over bg.
See Also
Atop, IAdd, IDiv, IMult, Inside, ISub, ISubA, Max, Min, Mix, Outside, Over, Screen, Under, Xor