Granny's Programming Pearls
"inside of every large program is a small program struggling to get out"
JavaRanch.com/granny.jsp
The moose likes Swing / AWT / SWT and the fly likes To get the color or pixels when the cursor move Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Swing / AWT / SWT
Reply Bookmark "To get the color or pixels when the cursor move" Watch "To get the color or pixels when the cursor move" New topic
Author

To get the color or pixels when the cursor move

Anonymous
Ranch Hand

Joined: Nov 22, 2008
Posts: 18944
hi,
I want to get the RBG or pixel color, when I move my cursor over the Image in Swing. Whether there is any class in java.awt.image which gives the color. if u have done, pls reply with the code.thanks
Cindy Glass
"The Hood"
Sheriff

Joined: Sep 29, 2000
Posts: 8521
The Color class has several methods that you can use. Or in the Image Package you can use ColorModel. It has
getBlue()
getGreen()
getRed()
etc.


"JavaRanch, where the deer and the Certified play" - David O'Meara
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: To get the color or pixels when the cursor move
 
Similar Threads
Rules roundup does not load
Movable JPanel - How?
Java Swing Custom Cursor ( Mac styled rotating dots busy cursor)
Input Textfield Background Color When the Cursor Is There
Picking the color under the mouse cursor on a JPanel