Is it possible to read pixel values from an Image control in Silverlight 4 without copying Image pixels into a WritableBitmap? I know how to do that with the WritableBitmap.
I would like to read the value of a pixel my mouse is over.
I can track my mouse move over the loaded image in the Image control reading relevant XY coordinates. I would like to avoid allocating a WritableBitmap object and do the expensive pix copy.
Thanks for suggestions. V