Re: Is there an opposite to BufferedImageCreator?
Posted by Wayne Rasband on
URL: http://imagej.273.s1.nabble.com/Is-there-an-opposite-to-BufferedImageCreator-tp3696164p3696165.html
> I want to have BufferedImages to ImagePlus etc.
BufferedImage is a subclass of Image so you can use the ImagePlus
constructor that creates an ImagePlus from an Image.
ImagePlus imp = new ImagePlus("title", bufferedImage);
-wayne