Java tutorial
/* ========================================================================= * This file is part of NITRO * ========================================================================= * * (C) Copyright 2004 - 2010, General Dynamics - Advanced Information Systems * * NITRO 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 program 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. * * You should have received a copy of the GNU Lesser General Public * License along with this program; if not, If not, * see <http://www.gnu.org/licenses/>. * */ package it.geosolutions.imageio.plugins.nitronitf; import it.geosolutions.imageio.stream.output.FileImageOutputStreamExt; import java.io.File; import java.io.FileInputStream; import java.io.IOException; import java.util.Locale; import javax.imageio.ImageTypeSpecifier; import javax.imageio.ImageWriter; import javax.imageio.spi.ImageWriterSpi; import org.apache.commons.lang.exception.ExceptionUtils; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; public class NITFImageWriterSpi extends ImageWriterSpi { private static final Log log = LogFactory.getLog(NITFImageWriterSpi.class); public NITFImageWriterSpi() { super("NITRO", // vendorName "1.0", // version new String[] { "NITF", "nitf", "NSIF" }, // names new String[] { "ntf", "nitf", "nsf" }, // suffixes new String[] { "image/x-ntf", "image/x-nitf" }, // MIMETypes NITFImageWriter.class.getName(), // writerClassName new Class[] { File.class, FileImageOutputStreamExt.class }, // outputTypes null, // readerSpiNames false, // supportsStandardStreamMetadataFormat null, // nativeStreamMetadataFormatName null, // nativeStreamMetadataFormatClassName null, // extraStreamMetadataFormatNames null, // extraStreamMetadataFormatClassNames false, // supportsStandardImageMetadataFormat null, // nativeImageMetadataFormatName null, // nativeImageMetadataFormatClassName null, // extraImageMetadataFormatNames null // extraImageMetadataFormatClassNames ); } public static boolean isNITF(File file) { FileInputStream fin = null; try { fin = new FileInputStream(file); byte[] firstFour = new byte[4]; fin.read(firstFour); return new String(firstFour).equals("NITF"); } catch (IOException e) { return false; } finally { try { if (fin != null) fin.close(); } catch (IOException e) { log.error(ExceptionUtils.getStackTrace(e)); } } } @Override public ImageWriter createWriterInstance(Object extension) throws IOException { return new NITFImageWriter(this); } @Override public String getDescription(Locale locale) { return "NITF 2.0/2.1 Writer"; } @Override public boolean canEncodeImage(ImageTypeSpecifier type) { // TODO RefactorMe return true; } }