/* * #%L * OME Bio-Formats package for reading and converting biological file formats. * %% * Copyright (C) 2005 - 2015 Open Microscopy Environment: * - Board of Regents of the University of Wisconsin-Madison * - Glencoe Software, Inc. * - University of Dundee * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 2 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 General Public License for more details. * * You should have received a copy of the GNU General Public * License along with this program. If not, see * <http://www.gnu.org/licenses/gpl-2.0.html>. * #L% */ import java.io.IOException; import java.lang.reflect.Array; import java.util.Arrays; import loci.common.RandomAccessInputStream; import loci.formats.tiff.*; /** * Parses and outputs all IFDs for the given TIFF file(s). */ public class TiffDumper { public static void main(String[] args) throws IOException { if (args.length == 0) { System.out.println("Usage: java TiffDumper file1 file2 ..."); return; } for (int i=0; i<args.length; i++) dumpIFDs(args[i]); } public static void dumpIFDs(String path) throws IOException { RandomAccessInputStream in = new RandomAccessInputStream(path); TiffParser parser = new TiffParser(in); IFDList ifdList = parser.getIFDs(); for (IFD ifd : ifdList) { for (Integer key : ifd.keySet()) { int k = key.intValue(); String name = IFD.getIFDTagName(k); String value = prettyValue(ifd.getIFDValue(k), 0); System.out.println(name + " = " + value); } } } private static String prettyValue(Object value, int indent) { if (!value.getClass().isArray()) return value.toString(); char[] spaceChars = new char[indent]; Arrays.fill(spaceChars, ' '); String spaces = new String(spaceChars); StringBuilder sb = new StringBuilder(); sb.append("{\n"); for (int i=0; i<Array.getLength(value); i++) { sb.append(spaces); sb.append(" "); Object component = Array.get(value, i); sb.append(prettyValue(component, indent + 2)); sb.append("\n"); } sb.append(spaces); sb.append("}"); return sb.toString(); } }