c#获取图片坐标
大哥们已知一个像素如何在一张图片找到这个像素的坐标(在picturebox中)用c#写的代码。。。。。。。。感谢...
大哥们 已知一个像素 如何在一张图片找到这个像素的坐标(在picturebox中)用c#写的代码。。。。。。。。感谢
展开
展开全部
在mousedown或mousemove事件处理中e.getposition(this)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
00
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2012-07-27
展开全部
遍历吧
下面这个是找到像素为蓝点的坐标
var bmp = Bitmap.FromFile("D:\\1.jpg") as Bitmap;
bmp.SetPixel(10, 10, Color.Blue);
var s = bmp.GetPixel(10, 10);
int i = 0, j = 0;
bool flag = true;
for (i = 0; i < bmp.Width && flag; i++)
{
for (j = 0; j < bmp.Height && flag; j++)
{
var t = bmp.GetPixel(i, j);
if (t.A == Color.Blue.A && t.R == Color.Blue.R && t.G == Color.Blue.G && t.B == Color.Blue.B)
{
flag = false;
break;
}
}
}
i--;
if (i == bmp.Width && j == bmp.Height)
MessageBox.Show("没找到");
else
MessageBox.Show(i + "," + j);
下面这个是找到像素为蓝点的坐标
var bmp = Bitmap.FromFile("D:\\1.jpg") as Bitmap;
bmp.SetPixel(10, 10, Color.Blue);
var s = bmp.GetPixel(10, 10);
int i = 0, j = 0;
bool flag = true;
for (i = 0; i < bmp.Width && flag; i++)
{
for (j = 0; j < bmp.Height && flag; j++)
{
var t = bmp.GetPixel(i, j);
if (t.A == Color.Blue.A && t.R == Color.Blue.R && t.G == Color.Blue.G && t.B == Color.Blue.B)
{
flag = false;
break;
}
}
}
i--;
if (i == bmp.Width && j == bmp.Height)
MessageBox.Show("没找到");
else
MessageBox.Show(i + "," + j);
追问
谢谢你了 已解决了 非常感谢
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
直接获取鼠标的坐标就好了啊……
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
gdi?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询