Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Drawing on WriteableBitmap

I have a WriteableBitmap and would like the user to be able to draw over it as if it was an InkPresenter control. What is the best way to go about doing this in realtime? Using WriteableBitmap.Pixels, I'm able to access each pixel, but when I try to edit them during the MouseMove event, it seems very slow, and only changes one pixel at a time. Are there any libraries or methods to help make this process easier? thanks

like image 414
Brap Avatar asked Dec 08 '10 01:12

Brap


1 Answers

Try this..

http://writeablebitmapex.codeplex.com/

like image 182
obenjiro Avatar answered Sep 21 '22 16:09

obenjiro