public static void showImage(Component parent, BufferedImage image) {
if (image == null) {
return;
}
ImageView view = new ImageView(image);
JOptionPane.showOptionDialog(parent, view, APPLICATION_NAME,
JOptionPane.DEFAULT_OPTION, JOptionPane.PLAIN_MESSAGE, null,
null, null);
}