Class MikroscanTiffReader

All Implemented Interfaces:
Closeable, AutoCloseable, ICompressedTileReader, IFormatHandler, IFormatReader, IMetadataConfigurable, IPyramidHandler

public class MikroscanTiffReader extends SVSReader
MikroscanTiffReader is the file format reader for Mikroscan TIFF files.
  • Field Details

    • LOGGER

      private static final org.slf4j.Logger LOGGER
      Logger for this class.
    • MIKROSCAN_IMAGE_DESCRIPTION_PREFIX

      private static final String MIKROSCAN_IMAGE_DESCRIPTION_PREFIX
      TIFF image description prefix for Mikroscan TIF files.
      See Also:
  • Constructor Details

    • MikroscanTiffReader

      public MikroscanTiffReader()
      Constructs a new Mikroscan TIF reader.
  • Method Details

    • isThisType

      public boolean isThisType(String name, boolean open)
      Description copied from class: FormatReader
      Checks if a file matches the type of this format reader. Checks filename suffixes against those known for this format. If the suffix check is inconclusive and the open parameter is true, the file is opened and tested with FormatReader.isThisType(RandomAccessInputStream).
      Specified by:
      isThisType in interface IFormatReader
      Overrides:
      isThisType in class SVSReader
      Parameters:
      open - If true, and the file extension is insufficient to determine the file type, the (existing) file is opened for further analysis.