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
Try this..
http://writeablebitmapex.codeplex.com/
链接地址: http://www.djcxy.com/p/26874.html上一篇: 如何为RenderTargetBitmap的输出设置透明度颜色?
下一篇: 在WriteableBitmap上绘图