I have a buffered image, I want to get the colour of pixels a开发者_如何学JAVAt a specific coord. Is there a function that returns this in the form of a color object as opposed to RGB values?
This is in Java by the way..
Check out the Color API.
You can create a Color object using the rgb value returned from the buffered image getRGB(...) method.
精彩评论