點擊色圖(以下圖)的某一點,獲取該點的顏色。
api
<Grid MouseLeftButtonDown="Grid_MouseLeftButtonDown"> <Grid.RowDefinitions> <RowDefinition Height="20"/> <RowDefinition Height="auto"/> <RowDefinition Height="20"/> <RowDefinition Height="auto"/> </Grid.RowDefinitions> <Image Grid.Row="1" Source="/Resources/Images/Cars/colorpicker1.png" Width="320" Height="240"/> <Image Grid.Row="3" Source="/Resources/Images/Cars/BMW.jpg" Width="630" Height="457"/> </Grid>
private void Grid_MouseLeftButtonDown(object sender, MouseButtonEventArgs e) { if (e.Source.GetType() != typeof(Image)) return; var pos = e.GetPosition((Image)e.Source); var img = ((Image)e.Source).Source as BitmapSource; if (pos.X > 0 && pos.Y > 0 && pos.X < img.PixelWidth && pos.Y < img.PixelHeight) SampleImageClick(img, pos); } protected void SampleImageClick(BitmapSource img, Point pos) { int stride = img.PixelWidth * 4; int size = img.PixelHeight * stride; byte[] pixels = new byte[(int)size]; img.CopyPixels(pixels, stride, 0); // Get pixel var x = (int)pos.X; var y = (int)pos.Y; int index = y * stride + 4 * x; byte red = pixels[index]; byte green = pixels[index + 1]; byte blue = pixels[index + 2]; byte alpha = pixels[index + 3]; Color color = Color.FromArgb(alpha, blue, green, red); string ColorText = "#" + color.A.ToString("X2") + color.R.ToString("X2") + color.G.ToString("X2") + color.B.ToString("X2"); }
參考:數組