Я проводил исследования в течение нескольких недель и не нашел ничего связанного, я хотел знать, как размыть графику, созданную в VB.NET, для создания мягкой кисти, например твердости кисти Photoshop.
Пример
Мой код
Dim DrawColor As Color = Color.Orange
Dim brushSize As Integer = 10
Public Pt As Point
Dim brush As New Pen(DrawColor, brushSize)
Private Sub PaintBrush(x As Integer, y As Integer)
graphic.SmoothingMode = SmoothingMode.AntiAlias
'graphic.BLUR?
graphic.DrawLine(brush, Pt, New Point(x, y))
Pt = New Point(x, y)
brush.Dispose()
End Using