public Canvas(int width, int height) { var white = new Css.Color(255, 255, 255, 255); Pixels = Enumerable.Repeat(white, width * height).ToList(); Width = width; Height = height; }
public SolidColor(Css.Color color, Layout.Rect rect) { Color = color; Rect = rect; }