在skiasharp中的skpath中无法使用地址线

时间:2018-01-12 06:59:45

标签: asp.net-core skiasharp

在核心平台中,我使用的是SKPATH而不是GRAPHICSPATH(SYSTEM.DRAWING),但我无法在SKPATH中添加该行。

Path.AddLine(x,y) //Addline is showing error where path refers to the SKPATH

是否有其他替代方案可以在SKPATH中添加该行。

谢谢,

1 个答案:

答案 0 :(得分:0)

SkiaSharp有时会使用一些不同的术语。你想要的可能是:

var path = new SKPath();

// start the path somewhere
path.MoveTo(0, 0);

// draw a line from (0,0) to (10,0)
path.LineTo(10, 0);

// draw another line from (10,0) to (10,10)
path.LineTo(10,10);

还有一些其他成员,但它们基本上遵循AddXXX的模式,用于关闭的形状(例如AddRectAddOval)和XXXTo的线段(例如LineToArcTo)。