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 booleanbeginSos()booleanvisitSegment(int marker, byte[] markerBytes, int segmentLength, byte[] segmentLengthBytes, byte[] segmentData)voidvisitSos(int marker, byte[] markerBytes, byte[] imageData)
-
-
-
Method Detail
-
beginSos
boolean beginSos()
-
visitSegment
boolean visitSegment(int marker, byte[] markerBytes, int segmentLength, byte[] segmentLengthBytes, byte[] segmentData) throws ImagingException, java.io.IOException- Throws:
ImagingExceptionjava.io.IOException
-
visitSos
void visitSos(int marker, byte[] markerBytes, byte[] imageData)
-
-