谁有用GetDIBits获得屏幕某点的像素值的资料
1个回答
2017-09-20
展开全部
public System.Drawing.Color GetPixelColor(int x, int y)
{
IntPtr hdc = GetDC(IntPtr.Zero);
uint pixel = GetPixel(hdc, x, y);
ReleaseDC(IntPtr.Zero, hdc);
Color color = Color.FromArgb((int)(pixel & 0x000000FF),
(int)(pixel & 0x0000FF00) >> 8,
(int)(pixel & 0x00FF0000) >> 16);
return color;
}
private void timer_Tick(object sender, EventArgs e)
{
textBox1.Text = GetPixelColor(Cursor.Position.X, Cursor.Position.Y).R.ToString() + " " + GetPixelColor(Cursor.Position.X, Cursor.Position.Y).G.ToString() + " " + GetPixelColor(Cursor.Position.X, Cursor.Position.Y).B.ToString();
}
核心代码是这样
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
美狐美颜sdk
2024-08-06 广告
2024-08-06 广告
山东小狐狸网络科技有限公司旗下的美狐美颜sdk主要是针对不同需求、预算的客户,为他们提供自由选择的购买方式,能够真正地以平台和用户需求出发;美狐将美颜SDK功能、种类进行区分,将其分为两个版本:基础版和专业版,版本不同,从而选择效果佳、性价...
点击进入详情页
本回答由美狐美颜sdk提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询