Property Image
Image
Gets the underlying ImageBuffer that this canvas draws onto.
public ImageBuffer Image { get; }
Property Value
Examples
var canvas = new Canvas(image);
canvas.Clear(new Color32(255, 255, 255));
canvas.Image.SaveAsPng("cleared.png");