BufferedImage « JFrame « Java Swing Q&A





1. How can I display a BufferedImage in a JFrame?    stackoverflow.com

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.

2. JFrame does not refresh after deleting an image    stackoverflow.com

I'm working for the first time with images in a JFrame, and I have some problems. I succeeded in putting an image on my JFrame, and now i want after 2 ...

3. image not displaying in java frame    stackoverflow.com

trying to learn windows programming in java, want to display a image to a frame.here is the problem code:

public static void main(String[] args) throws IOException {
      ...

4. JFrame image display at frame resize    stackoverflow.com

I have this JFrame containing a children of JPanel wherein it displays the image which is declared in this manner.

BufferedImage image = ImageIO.read(filename);
The program displays the image properly. But the only ...

5. Update a BufferedImage in a JFrame    stackoverflow.com

I have a BufferedImage displayed in a JFrame through my own class. I opted to display the BufferedImage using my own class so I can scale it. My paintComponent and update

public ...

6. Help making an eraser for a paint program in java    stackoverflow.com

Making a very basic paint program for a class and one of the requirements is that we must make an eraser. Not sure how to do that, We are using a ...

7. Update window every time image gets recieved    stackoverflow.com

I'm getting images through sockets. Now, I'm actually getting it, but only once as I expected. I have checked out some classes you can add events to, such as the ImageReader but ...