操纵图像
伙计们,我需要检索图像的颜色..如何检索它?
folks, i need to retrieve colors of an image.. how to retrieve it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
伙计们,我需要检索图像的颜色..如何检索它?
folks, i need to retrieve colors of an image.. how to retrieve it?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
如果将图像加载到 Bitmap 类 (System.Drawing.Bitmap) 中,
您可以使用 GetPixel() 方法来检索单个像素的颜色。
if you load the image into a Bitmap class (System.Drawing.Bitmap),
you can use GetPixel() method to retrieve color of individual pixels.
您可以使用 位图获取特定像素的颜色。获取像素
You can get the color of a certain pixel using Bitmap.GetPixel
实际上,这是 VB.NET,但使用 http:// /www.developerfusion.com/tools/convert/vb-to-csharp/
Actually, this is VB.NET, but convert it to c# using http://www.developerfusion.com/tools/convert/vb-to-csharp/