I'm using an InkCanvas in my project and I noticed that whenever I draw something, the stroke is very sharp, and once I release the mouse button it becomes blurry.
Is there any way I can keep the stroke identical to what it looks like as I'm drawing it?
Right now I'm going through the array I get from the image and I remove any pixel that doesn't perfectly match Color.Red (i.e., ARGB: 255,255,0,0)... and I'm sure there's a smarter way to do this!
Thanks in advance.