Function: linear_blend --Usage-- > combine_blend(image1: image, image2: image, combine: combine_mode) Blend two images together using a [[type:combine|combine function]]. The images must have the same size. --Parameters-- ! Parameter Type Description | @image1@ [[type:image]] First image to blend | @image2@ [[type:image]] Second image to blend | @combine@ [[type:combine]] Combining function to use --Examples-- > combine_blend(image1: "image1.png", image2: "image2.png", combine: "add") == [[Image]]
 combine_blend(image1: "image1.png", image2: "image2.png", combine: "add") == "image_combine_blend.png"
--See also-- | [[fun:linear_blend]] Blend two images together using a linear gradient. | [[fun:masked_blend]] Blend two images together using a third mask image.