/* * ImageI/O-Ext - OpenSource Java Image translation Library * http://www.geo-solutions.it/ * http://java.net/projects/imageio-ext/ * (C) 2008, GeoSolutions * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; * either version 3 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. */ package it.geosolutions.imageio.plugins.envihdr; import it.geosolutions.imageio.gdalframework.GDALImageReaderSpi; import it.geosolutions.imageio.stream.input.FileImageInputStreamExt; import java.io.File; import java.io.IOException; import java.util.Collections; import java.util.Locale; import java.util.logging.Level; import java.util.logging.Logger; import javax.imageio.ImageReader; /** * Service provider interface for the ENVI Hdr labelled Image * * @author Daniele Romagnoli, GeoSolutions. * @author Simone Giannecchini, GeoSolutions. */ public class ENVIHdrImageReaderSpi extends GDALImageReaderSpi { private static final Logger LOGGER = Logger .getLogger("it.geosolutions.imageio.plugins.envihdr"); static final String[] suffixes = { "bil", "bip", "bsq", "img" }; static final String[] formatNames = { "ENVI Hdr labelled", "ENVIHDR" }; static final String[] MIMETypes = { "image/bil", "image/bip", "image/bsq"}; static final String version = "1.0"; static final String description = "ENVI Hdr labelled Image Reader, version " + version; static final String readerCN = "it.geosolutions.imageio.plugins.envi.ENVIHdrImageReader"; static final String vendorName = "GeoSolutions"; // writerSpiNames static final String[] wSN = { null }; // StreamMetadataFormatNames and StreamMetadataFormatClassNames static final boolean supportsStandardStreamMetadataFormat = false; static final String nativeStreamMetadataFormatName = null; static final String nativeStreamMetadataFormatClassName = null; static final String[] extraStreamMetadataFormatNames = { null }; static final String[] extraStreamMetadataFormatClassNames = { null }; // ImageMetadataFormatNames and ImageMetadataFormatClassNames static final boolean supportsStandardImageMetadataFormat = false; static final String nativeImageMetadataFormatName = null; static final String nativeImageMetadataFormatClassName = null; static final String[] extraImageMetadataFormatNames = { null }; static final String[] extraImageMetadataFormatClassNames = { null }; public ENVIHdrImageReaderSpi() { super( vendorName, version, formatNames, suffixes, MIMETypes, readerCN, // readerClassName new Class[] { File.class, FileImageInputStreamExt.class }, wSN, // writer Spi Names supportsStandardStreamMetadataFormat, nativeStreamMetadataFormatName, nativeStreamMetadataFormatClassName, extraStreamMetadataFormatNames, extraStreamMetadataFormatClassNames, supportsStandardImageMetadataFormat, nativeImageMetadataFormatName, nativeImageMetadataFormatClassName, extraImageMetadataFormatNames, extraImageMetadataFormatClassNames, Collections .singletonList("ENVI")); if (LOGGER.isLoggable(Level.FINE)) LOGGER.fine("ENVIHdrImageReaderSpi Constructor"); } /** * Returns an instance of the ENVIHdrImageReader * * @see javax.imageio.spi.ImageReaderSpi#createReaderInstance(java.lang.Object) */ public ImageReader createReaderInstance(Object source) throws IOException { return new ENVIHdrImageReader(this); } /** * @see javax.imageio.spi.IIOServiceProvider#getDescription(java.util.Locale) */ public String getDescription(Locale locale) { return description; } }