使用 pyglet 读取像素的 RGB 值时出现问题

发布于 2024-10-02 15:58:11 字数 313 浏览 5 评论 0原文

对于一个编程项目,我需要使用 pyglet 从加载的图像中读取像素。 我使用“pyglet.image.load('map.png')”来加载图像,我发现您可以使用 img.get_image_data() 检索图像数据。 我使用行 mapImage.get_region(x,y,1,1).get_image_data().get_data("RGBA", 4)

从位于 (x,y) 的像素读取数据。这就是我陷入困境的地方。当我打印上面一行的结果时,我得到一个空格。谁能澄清我如何从 get_data() 函数返回的字符串中提取 RGB 值?

谢谢!

For a programming project, I need to read pixels from a loaded image using pyglet.
I used "pyglet.image.load('map.png')" to load the image, and I found out that you can retrieve the image data using img.get_image_data().
I use line mapImage.get_region(x,y,1,1).get_image_data().get_data("RGBA", 4)

to read the data from the pixel located at (x,y). This is where I get stuck. When I print the result of the line above, I get an empty space. Could anyone clarify how I extract the RGB values from the string returned by the get_data() function?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

成熟稳重的好男人 2024-10-09 15:58:11

您的mapImage...返回一个包含4个字符的字符串,代表rgba。

试试这个:

pix = mapImage.get_region(x,y,1,1).get_image_data().get_data("RGBA", 4)

print 'r = ' + str(ord(pix[0]))
print 'g = ' + str(ord(pix[1]))
print 'b = ' + str(ord(pix[2]))
print 'a = ' + str(ord(pix[3]))

Your mapImage... returns a string with 4 characters representing rgba.

Try this:

pix = mapImage.get_region(x,y,1,1).get_image_data().get_data("RGBA", 4)

print 'r = ' + str(ord(pix[0]))
print 'g = ' + str(ord(pix[1]))
print 'b = ' + str(ord(pix[2]))
print 'a = ' + str(ord(pix[3]))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文