I want to display variations of the same image in the same JFrame, for example display an image in JFrame, then replace it with gray scale of the same image.
|
feedback
|
|
You will have to repaint the Here is what a simple google on the topic brings up: (I use those tutorials for all my Java coding) | ||||
|
feedback
|
|
I'm not really sure what you question is but if you have a BufferedImage then you simply create an ImageIcon using the image, then you add the icon to a JLabel and add the label to the GUI like any other component. If you question is about how to create a gray scale, the I suggest you search the web using those terms as the search keywords, I'm sure you will find examples out there. | |||
|
feedback
|