Need to implement Image processing effects like Blur, Black & White, Pinch Zoom in WinRT API. My approach has always been getting pixels from WritableBitmap Image object and apply changes on that. But as i can find in WinRT WritableBitmap don’t provide any way to access individual level pixels.
Other way suggested by people are to implement direct X and then apply using that. But for that I need to do coding using C++ about which i have zero experience.
Can anyone suggest some other way to do the same thing in C# WinRT api?
Please refer to http://code.msdn.microsoft.com/windowsdesktop/Metro-Style-lightweight-24589f50
there is a sample code and article there.