Interface JpegUtils.Visitor
-
- All Known Implementing Classes:
JpegDecoder
- Enclosing class:
- JpegUtils
public static interface JpegUtils.Visitor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
beginSOS()
boolean
visitSegment(int marker, byte[] markerBytes, int segmentLength, byte[] segmentLengthBytes, byte[] segmentData)
void
visitSOS(int marker, byte[] markerBytes, byte[] imageData)
-
-
-
Method Detail
-
beginSOS
boolean beginSOS()
-
visitSOS
void visitSOS(int marker, byte[] markerBytes, byte[] imageData)
-
visitSegment
boolean visitSegment(int marker, byte[] markerBytes, int segmentLength, byte[] segmentLengthBytes, byte[] segmentData) throws ImageReadException, IOException
- Throws:
ImageReadException
IOException
-
-