我创建了一个简单的GraphicsPath(圆角矩形),没什么特别的。
现在我想在它周围画一条黑线(用"插入",不用"一开始" ......路径不应该变得很大),我不要&# 39;我想填补这条道路。
有快速的方法吗?
答案 0 :(得分:0)
知道了:
Dim nPen As New Pen(uBorderColor, 1)
With nPen
.Alignment = PenAlignment.Inset
End With
Using g As Graphics = Graphics.FromImage(uBitmap)
g.DrawPath(nPen, uPathBorder)
End Using