I need to draw a soft wide outline for my GDI + GraphicsPath. Something like that: 
The edge of the path is displayed in red. I would like to use a wide handle that would be smooth. I also need the ability to control the smoothness of the pen.
I tried using a gradient brush with a pen, but could not find a solution that works.
I can achieve the desired result by drawing the outline with a black solid pen and applying a Gaussian smoothing filter on top of the result image, but I want to avoid this because it is slow when I have to process the whole image, which could be quite large.
Is there a way to draw a smooth outline outline?
source share