4849505152535455565758
/** * Creates an instance and sets the metadata. */ public MrSIDFormat() { super(new MrSIDImageReaderSpi()); if (LOGGER.isLoggable(Level.FINE)) { LOGGER.fine("Creating a new MrSIDFormat."); }
5354555657585960616263
// if these classes are here, then the runtime environment has // access to JAI and the JAI ImageI/O toolbox. try { Class.forName("it.geosolutions.imageio.plugins.mrsid.MrSIDImageReaderSpi"); available = new MrSIDImageReaderSpi().isAvailable(); if (LOGGER.isLoggable(Level.FINE)) { if (available) { LOGGER.fine("MrSIDFormatFactory is availaible."); } else {
74757677787980
* Hints to be used by this reader throughout his life. * @throws DataSourceException */ public MrSIDReader(Object input, final Hints hints) throws DataSourceException { super(input, hints, worldFileExt, new MrSIDImageReaderSpi()); }