Uses of Class
ij.io.FileInfo

Packages that use FileInfo
ij   
ij.io   
 

Uses of FileInfo in ij
 

Methods in ij that return FileInfo
 FileInfo ImagePlus.getFileInfo()
          Returns a FileInfo object containing information, including the pixel array, needed to save this image.
 FileInfo ImagePlus.getOriginalFileInfo()
          Returns the FileInfo object that was used to open this image.
 

Methods in ij with parameters of type FileInfo
 void ImagePlus.setFileInfo(FileInfo fi)
          Saves this image's FileInfo so it can be later retieved using getOriginalFileInfo().
 

Uses of FileInfo in ij.io
 

Methods in ij.io that return FileInfo
 FileInfo[] TiffDecoder.getTiffInfo()
           
 FileInfo ImportDialog.getFileInfo()
          Displays the dialog and returns a FileInfo object that can be used to open the image.
 

Methods in ij.io with parameters of type FileInfo
 void TiffDecoder.saveImageDescription(byte[] description, FileInfo fi)
          Save the image description in the specified FileInfo.
 ImagePlus Opener.openTiffStack(FileInfo[] info)
          Attemps to open a tiff file as a stack.
 java.awt.image.ColorModel FileOpener.createColorModel(FileInfo fi)
          Returns an IndexColorModel for the image specified by this FileInfo.
 java.io.InputStream FileOpener.createInputStream(FileInfo fi)
          Returns an InputStream for the image described by this FileInfo.
 

Constructors in ij.io with parameters of type FileInfo
TiffEncoder(FileInfo fi)
           
ImageWriter(FileInfo fi)
           
ImageReader(FileInfo fi)
          Constructs a new ImageReader using a FileInfo object to describe the file to be read.
FileOpener(FileInfo fi)