Here you can find the source of toSwingImage(final BufferedImage image)
public static JLabel toSwingImage(final BufferedImage image)
//package com.java2s; //License from project: Apache License import java.awt.image.BufferedImage; import javax.swing.ImageIcon; import javax.swing.JComponent; import javax.swing.JLabel; public class Main { public static JLabel toSwingImage(final BufferedImage image) { JLabel label = new JLabel(new ImageIcon(image)); label.setAlignmentX(JComponent.CENTER_ALIGNMENT); return label; }//from w w w .j a v a 2 s . c o m }