Simple graphical editor on Windows Phone 7

Go To StackoverFlow.com

1

I want to create a simple graphical editor for Windows Phone 7. User will choose an instrument and draw smth. To drawing i want to use WriteableBitmap, because per-pixel drawing needed sometimes. Is that a good idea or any best way exists?

2012-04-03 20:55
by Denis Ionov


3

its good idea becouse of performance loss,and good for GC,when creating the WriteableBitmap, the application must define the image properties such as the width, height, and pixel format. This allows the WriteableBitmap object to allocate the memory once and just update pixel data as needed.

2012-04-03 21:04
by Mustafa Ekici
thanks for your advice. I thought to do this in same wa - Denis Ionov 2012-04-03 21:10
@DenisIonov Im using it in my Kinect application when processing frames cheers ; - Mustafa Ekici 2012-04-03 21:11
Ads