如何获取图像文件并将其转换为光栅,然后访问其数据?
如何获取图像文件并将其转换为光栅,然后逐像素访问其数据(RBG 值)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何获取图像文件并将其转换为光栅,然后逐像素访问其数据(RBG 值)?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(5)
现在您可以使用 Color.getRed()、getGreen()、getBlue() 和 getAlpha() 来获取不同的值
Now you can use Color.getRed(), getGreen(), getBlue() and getAlpha() to get the different values
[编辑] 请注意,@Sibbo 的答案是正确的,并且可以方便地使用
Color
类颜色访问器方法;然而,正如我所演示的那样,直接通过位操作提取颜色可能会快得多,因为它避免了重复构造函数调用的开销。[Edit] Note that @Sibbo's answer is correct and conveniently uses the
Color
class color accessor methods; however, extracting the colors directly via bit manipulation as I have demonstrated will likely be considerably faster since it avoids the overhead of repeated constructor calls.使用
ImageIO.read
以BufferedImage
,然后使用其中一个getData
方法获取图像的光栅
。其中,您将找到获取像素数据的方法。Use
ImageIO.read
to read the image file in as aBufferedImage
, and then use one of thegetData
methods to obtain the image'sRaster
. And therein, you'll find methods to obtain pixel data.使用 rasters
.getData
方法完成将图像转换为栅格后,不要使用 rgb 值Don't use the rgb values after you completed turning the image into a raster use the rasters
.getData
method使用这个:
Use this: