我想要图片框的像素颜色值 我将文字分配给了图片盒和现在想要获得每个像素的颜色值 什么是图片框的方法或我应该将其转换为位图?怎么样? 在vb6中有getpixel()方法来获取颜色值 什么是.net?
答案 0 :(得分:2)
如果你可以把它转换成位图,那就轻而易举了:
Dim MyBitmap As New Bitmap(MyPicturebox.Image)
Dim MyColor As Color
MyColor = MyBitmap.GetPixel(X of your pixel, Y of your pixel)
您可能想要遍历像素,如果您知道宽度和高度,这并不难。