org.apache.commons.imaging.formats.tiff.TiffContents Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons-imaging Show documentation
Show all versions of commons-imaging Show documentation
Apache Commons Imaging (previously Sanselan) is a pure-Java image library.
The newest version!
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.commons.imaging.formats.tiff;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import org.apache.commons.imaging.ImageReadException;
import org.apache.commons.imaging.formats.tiff.taginfos.TagInfo;
import org.apache.commons.imaging.util.Debug;
public class TiffContents {
public final TiffHeader header;
public final List directories;
public TiffContents(final TiffHeader tiffHeader, final List directories) {
this.header = tiffHeader;
this.directories = Collections.unmodifiableList(directories);
}
public List getElements() throws ImageReadException {
final List result = new ArrayList<>();
result.add(header);
for (final TiffDirectory directory : directories) {
result.add(directory);
final List fields = directory.entries;
for (final TiffField field : fields) {
final TiffElement oversizeValue = field.getOversizeValueElement();
if (null != oversizeValue) {
result.add(oversizeValue);
}
}
if (directory.hasTiffImageData()) {
result.addAll(directory.getTiffRawImageDataElements());
}
if (directory.hasJpegImageData()) {
result.add(directory.getJpegRawImageDataElement());
}
}
return result;
}
public TiffField findField(final TagInfo tag) throws ImageReadException {
for (final TiffDirectory directory : directories) {
final TiffField field = directory.findField(tag);
if (null != field) {
return field;
}
}
return null;
}
public void dissect(final boolean verbose) throws ImageReadException {
final List elements = getElements();
Collections.sort(elements, TiffElement.COMPARATOR);
long lastEnd = 0;
for (final TiffElement element : elements) {
if (element.offset > lastEnd) {
Debug.debug("\t" + "gap: " + (element.offset - lastEnd));
}
if (element.offset < lastEnd) {
Debug.debug("\t" + "overlap");
}
Debug.debug("element, start: " + element.offset + ", length: "
+ element.length + ", end: "
+ (element.offset + element.length) + ": "
+ element.getElementDescription(false));
if (verbose) {
final String verbosity = element.getElementDescription(true);
if (null != verbosity) {
Debug.debug(verbosity);
}
}
lastEnd = element.offset + element.length;
}
Debug.debug("end: " + lastEnd);
Debug.debug();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy