Class AbstractPhotometricInterpreter

java.lang.Object
org.apache.commons.imaging.formats.tiff.photometricinterpreters.AbstractPhotometricInterpreter
Direct Known Subclasses:
PhotometricInterpreterBiLevel, PhotometricInterpreterCieLab, PhotometricInterpreterCmyk, PhotometricInterpreterFloat, PhotometricInterpreterLogLuv, PhotometricInterpreterPalette, PhotometricInterpreterRgb, PhotometricInterpreterYCbCr

public abstract class AbstractPhotometricInterpreter extends Object
Interpreter for photometric information in TIFF images. The photometric interpretation tag is a requirement for valid TIFF images, and defines the color space of the image data.
See Also:
  • Field Details

    • samplesPerPixel

      protected final int samplesPerPixel
    • bitsPerSample

      private final int[] bitsPerSample
    • predictor

      protected final int predictor
    • width

      protected final int width
    • height

      protected final int height
  • Constructor Details

    • AbstractPhotometricInterpreter

      public AbstractPhotometricInterpreter(int samplesPerPixel, int[] bitsPerSample, int predictor, int width, int height)
  • Method Details