Color value of a BufferedImage pixel
What's the fastest way of accessing the color value of a pixel in a BufferedImage (at given x and y coordinates)?
I tried getRGB(), but it's too slow
9 Replies
⌛
This post has been reserved for your question.
Hey @MrSalty! Please useTIP: Narrow down your issue to simple and precise questions to maximize the chance that others will reply in here./close
or theClose Post
button above when your problem is solved. Please remember to follow the help guidelines. This post will be automatically marked as dormant after 300 minutes of inactivity.
For doing operations on the entire image, you might want to take a look at
BufferedImageOp
No, only for one pixel
use the
getRGB()
method?
and if you do need to access many pixels of the same image, getRaster().getPixels(...)
might work betterI tried that, but it's just too slow
💤
Post marked as dormant
This post has been inactive for over 300 minutes, thus, it has been archived.
If your question was not answered yet, feel free to re-open this post or create a new one.
In case your post is not getting any attention, you can try to use /help ping
.
Warning: abusing this will result in moderative actions taken against you.
What exactly do you need it for?
You probably won't get much faster with getting individual pixel values
Converting the image to an array and accessing it is much faster
Post Closed
This post has been closed by <@1146152913987698848>.