photobot.Canvas.merge()

Syntax

canvas.merge(layers=[])

Description

Merges the canvas layers with the indices in the layers list.

Example

Opens robot.jpg, hues it with an orange fill, and merges the robot layer and the fill layer together to a single layer.

photobot = ximport("photobot")
canvas = photobot.canvas(100,100)
canvas.layer("robot.jpg")
canvas.fill((255,128,0))
canvas.layers[2].hue()
canvas.merge([1,2])