how to display .pgm image on a JFrame?

how to display image retrieved from mysql on JFrame

  • I am facing a problem in displaying image that retrieved from database on JFrame. Here is the that i will use, ......... try { Class.forName("com.mysql.jdbc.Driver"); Connection con=DriverManager.getConnection("jdbc:mysql://localhost:3306/studio","root",""); Statement st=con.createStatement(); ResultSet rs = st.executeQuery( "select image from photo_instn where cust_id='2'") ; while(rs.next()) { byte[] imagedata = rs.getBytes("image") ; Image img = Toolkit.getDefaultToolkit().createImage(imagedata); ImageIcon icon =new ImageIcon(img); JLabel lPhoto = new JLabel(icon) ; setLayout(null); // BYTES TO IMAGE System.out.println("Inside"); System.out.println(lPhoto); this.add(lPhoto) ; lPhoto.setBounds(200,20,300,400); } } This code has no problem.but image not displayed on frame... Please help me for solving this problem....

  • Answer:

    try adding this.setVisible(true) to your code after this.add(lPhoto) ;

Nidhin at Stack Overflow Visit the source

Was this solution helpful to you?

Other answers

1 Retrieve byte[] from DB as you did in your code then InputStream in = new ByteArrayInputStream(imageInByte); BufferedImage bImageFromConvert = ImageIO.read(in); 2 Represent that image on JFrame boolean Graphics.drawImage(Image img, int x, int y, ImageObserver observer); Also See http://download.oracle.com/javase/tutorial/2d/images/drawimage.html

Jigar Joshi

We don't know the context of how this code is used. Generally after adding/removing a component from a GUI you need to use: panel.revalidate(); panel.repaint();

camickr

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.