Table of Contents

Property Image

Namespace
LMKit.Graphics.Drawing
Assembly
LM-Kit.NET.dll

Image

Gets the underlying ImageBuffer that this canvas draws onto.

public ImageBuffer Image { get; }

Property Value

ImageBuffer

Examples

var canvas = new Canvas(image);
canvas.Clear(new Color32(255, 255, 255));
canvas.Image.SaveAsPng("cleared.png");