Class PhotometricInterpreter
- java.lang.Object
-
- org.apache.commons.imaging.formats.tiff.photometricinterpreters.PhotometricInterpreter
-
- Direct Known Subclasses:
PhotometricInterpreterBiLevel,PhotometricInterpreterCieLab,PhotometricInterpreterCmyk,PhotometricInterpreterFloat,PhotometricInterpreterLogLuv,PhotometricInterpreterPalette,PhotometricInterpreterRgb,PhotometricInterpreterYCbCr
public abstract class PhotometricInterpreter 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.
-
-
Field Summary
Fields Modifier and Type Field Description protected intheightprotected intpredictorprotected intsamplesPerPixelprotected intwidth
-
Constructor Summary
Constructors Constructor Description PhotometricInterpreter(int samplesPerPixel, int[] bitsPerSample, int predictor, int width, int height)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected intgetBitsPerSample(int offset)abstract voidinterpretPixel(ImageBuilder imageBuilder, int[] samples, int x, int y)
-
-
-
Method Detail
-
interpretPixel
public abstract void interpretPixel(ImageBuilder imageBuilder, int[] samples, int x, int y) throws ImageReadException, IOException
- Throws:
ImageReadExceptionIOException
-
getBitsPerSample
protected int getBitsPerSample(int offset)
-
-