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 java.lang.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 private int[]
bitsPerSample
protected int
height
protected int
predictor
protected int
samplesPerPixel
protected int
width
-
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 int
getBitsPerSample(int offset)
abstract void
interpretPixel(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, java.io.IOException
- Throws:
ImageReadException
java.io.IOException
-
getBitsPerSample
protected int getBitsPerSample(int offset)
-
-