TMI-139: Support for writing TIFF files with custom resolution value.

This commit is contained in:
Harald Kuhr
2015-08-12 10:48:58 +02:00
parent 517fc770bd
commit c913ef445b
7 changed files with 1600 additions and 103 deletions

View File

@@ -98,15 +98,6 @@ public abstract class AbstractMetadata extends IIOMetadata implements Cloneable
if (!root.getNodeName().equals(formatName)) {
throw new IIOInvalidTreeException("Root must be " + formatName, root);
}
// TODO: Merge both native and standard!
Node node = root.getFirstChild();
while (node != null) {
// TODO: Merge values from node into this
// Move to the next sibling
node = node.getNextSibling();
}
}
@Override