本文介绍了单击图片框时获取PixelValue的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在.NET C#项目中工作,想在单击图片框时获取像素值,如何实现?

I'm working on a .NET C# project and would like to get the pixel value when I click a picturebox, how can I achieve that?

基本思想是,当我在图片框中单击任何位置时,都会得到该图像点的像素值.

The basic idea is that when I click anywhere in the picturebox, I get the pixelvalue of that image point..

谢谢!

推荐答案

使用此:

private void pictureBox2_MouseUp(object sender, MouseEventArgs e)
{
    Bitmap b = new Bitmap(pictureBox1.Image);
    Color color = b.GetPixel(e.X, e.Y);
}

这篇关于单击图片框时获取PixelValue的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-21 07:00