Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 BufferedImage 中,您可以使用以下方法获取给定像素的颜色:
image.getRBG(x, y)
但是是否有设置给定像素的 rbg 颜色的等效方法,例如:
image.setRBG(x, y, rbgCode)
我正在做一些图像处理,只是想将某些像素涂成红色,这样我就可以跟踪我的算法在处理图像时所采用的路径。
你的意思是类似的东西BufferedImage#setRGB(x, y, rgb)?
BufferedImage#setRGB(x, y, rgb)
例如
image.setRGB(x, y, Color.RED.getRGB());