throw new FormatIOException("Null ImagePlus Object.");
}
ImageProcessor ip = imp.getProcessor();
int width = ip.getWidth();
int height = ip.getHeight();
Image img = ip.createImage();
imp.flush();
imp = null;
ip = null;
BufferedImage bImg = new BufferedImage(width, height, BufferedImage.TYPE_3BYTE_BGR);