You can find out the actual pixel height and width from the ImageSource.
ImageSource imageSource = image.Source;
BitmapImage bitmapImage = (BitmapImage) imageSource ;
Now since you got the image displayed in Image control. You can easily map the mouse position to the Pixel scale.
pixelMousePositionX = e.GetPosition(image).X * bitmapImage.PixelWidth/image.Width;
pixelMousePositionY = e.GetPosition(image).Y * bitmapImage.PixelHeight/image.Height;
Have fun
Jobi Joy
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…