Inputs
| Parameter | Description | Data Type |
|---|---|---|
source | The source image tensor to be composited over the destination image. It plays a crucial role in determining the final visual outcome based on the selected compositing mode. | IMAGE |
source_alpha | The alpha channel of the source image, which specifies the transparency of each pixel in the source image. It affects how the source image blends with the destination image. | MASK |
destination | The destination image tensor that serves as the backdrop over which the source image is composited. It contributes to the final composited image based on the blending mode. | IMAGE |
destination_alpha | The alpha channel of the destination image, defining the transparency of the destination image’s pixels. It influences the blending of the source and destination images. | MASK |
mode | The Porter-Duff compositing mode to apply, which determines how the source and destination images are blended together. Each mode creates different visual effects. | COMBO[STRING] |
Outputs
| Parameter | Description | Data Type |
|---|---|---|
image | The composited image resulting from the application of the specified Porter-Duff mode. | IMAGE |
mask | The alpha channel of the composited image, indicating the transparency of each pixel. | MASK |
This documentation was AI-generated. If you find any errors or have suggestions for improvement, please feel free to contribute! Edit on GitHub