/* * Copyright 2002-2016 Drew Noakes * * Licensed 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. * * More information about this project is available at: * * https://drewnoakes.com/code/exif/ * https://github.com/drewnoakes/metadata-extractor */ package com.drew.imaging.tiff; import com.drew.lang.RandomAccessReader; import com.drew.lang.Rational; import com.drew.lang.annotations.NotNull; import com.drew.lang.annotations.Nullable; import java.io.IOException; import java.util.Set; /** * Interface of an class capable of handling events raised during the reading of a TIFF file * via {@link TiffReader}. * * @author Drew Noakes https://drewnoakes.com */ public interface TiffHandler { /** * Receives the 2-byte marker found in the TIFF header. *
* Implementations are not obligated to use this information for any purpose, though it may be useful for
* validation or perhaps differentiating the type of mapping to use for observed tags and IFDs.
*
* @param marker the 2-byte value found at position 2 of the TIFF header
*/
void setTiffMarker(int marker) throws TiffProcessingException;
boolean tryEnterSubIfd(int tagId);
boolean hasFollowerIfd();
void endingIFD();
void completed(@NotNull final RandomAccessReader reader, final int tiffHeaderOffset);
@Nullable
Long tryCustomProcessFormat(int tagId, int formatCode, long componentCount);
boolean customProcessTag(int tagOffset,
@NotNull Set