Method Merge
Merge(Canvas, Canvas)
Combines the drawing operations of two specified canvas.
public static Canvas Merge(Canvas source, Canvas other)
Parameters
source
CanvasThe first canvas object to merge.
other
CanvasThe second canvas object to merge. The bitmap allocators for both canvas objects must be identical for drawing operations to be composable.
Returns
- Canvas
A new Canvas object representing the application of the operations of the
source
canvas, followed by the operations of theother
canvas.
Exceptions
- ArgumentNullException
source
orother
is null.- ArgumentException
The bitmap allocator of the
other
canvas is not the same as the allocator for thesource
canvas.