我的图像来自(System.Cord.Controls.Image)。
这一形象位于主血管上。
在我点击该图像的任何部分时,我想确定烟雾曲线的alpha频道价值。
When doing something like the following, I m getting an exception. {"Value does not fall within the expected range."} System.Exception {System.ArgumentException}
法典:
try{
CroppedBitmap cb = new CroppedBitmap(ac.displayImage.Source as BitmapSource,
new Int32Rect((int)mousePoint.X,
(int)mousePoint.Y, 1, 1));
byte[] pixels = new byte[4];
cb.CopyPixels(pixels, 4, 0);
}
catch (Exception ex)
{
System.Diagnostics.Debug.WriteLine(ex.Message);
}
The mousePoint.X, and mousePoint. 用户在主要窗口点击时获得Y。 是否有更好的办法这样做?