Class JFIFInputStream
- java.lang.Object
-
- java.io.InputStream
-
- java.io.FilterInputStream
-
- ch.randelshofer.media.jpeg.JFIFInputStream
-
- All Implemented Interfaces:
java.io.Closeable,java.lang.AutoCloseable
public class JFIFInputStream extends java.io.FilterInputStreamJFIFInputStream.This InputStream uses two special marker values which do not exist in the JFIF stream:
- -1: marks junk data at the beginning of the file.
- 0: marks entropy encoded image data.
The junk data at the beginning of the file can be accessed by calling the read-methods immediately after opening the stream. Call nextSegment() immediately after opening the stream if you are not interested into this junk data.
Junk data at the end of the file is delivered as part of the EOI_MARKER segment. Finish reading after encountering the EOI_MARKER segment if you are not interested in this junk data.
Source:
JPEG File Interchange Format Version 1.02
http://www.jpeg.org/public/jfif.pdf
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classJFIFInputStream.SegmentRepresents a segment within a JFIF File.
-
Field Summary
Fields Modifier and Type Field Description static intAPP1_MARKERAPP1_MARKER Reserved for application usestatic intAPP2_MARKERAPP2_MARKER Reserved for application usestatic intEOI_MARKEREnd of imagestatic intJPG0_MARKERReserved for JPEG extensionsstatic intJPG1_MARKERstatic intJPG2_MARKERstatic intJPG3_MARKERstatic intJPG4_MARKERstatic intJPG5_MARKERstatic intJPG6_MARKERstatic intJPG7_MARKERstatic intJPG8_MARKERstatic intJPG9_MARKERstatic intJPGA_MARKERstatic intJPGB_MARKERstatic intJPGC_MARKERstatic intJPGD_MARKERstatic intJUNK_MARKERJUNK_MARKER Marker (for data which is not part of the JFIF stream.static intSOI_MARKERStart of imagestatic intSOS_MARKERStart of scanstatic intTEM_MARKERTemporary private use in arithmetic coding
-
Constructor Summary
Constructors Constructor Description JFIFInputStream(java.io.InputStream in)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description JFIFInputStream.SegmentgetNextSegment()Gets the next segment from the input stream.JFIFInputStream.SegmentgetSegment()Gets the current segment from the input stream.longgetStreamPosition()voidmark(int readlimit)Marks the current position in this input stream.booleanmarkSupported()Tests if this input stream supports themarkandresetmethods.intread()Reads the next byte of data from this input stream.intread(byte[] b, int off, int len)Reads up tolenb of data from this input stream into an array of b.voidreset()Repositions this stream to the position at the time themarkmethod was last called on this input stream.longskip(long n)Skips over and discardsnb of data from the input stream.
-
-
-
Field Detail
-
JUNK_MARKER
public static final int JUNK_MARKER
JUNK_MARKER Marker (for data which is not part of the JFIF stream.- See Also:
- Constant Field Values
-
SOI_MARKER
public static final int SOI_MARKER
Start of image- See Also:
- Constant Field Values
-
EOI_MARKER
public static final int EOI_MARKER
End of image- See Also:
- Constant Field Values
-
TEM_MARKER
public static final int TEM_MARKER
Temporary private use in arithmetic coding- See Also:
- Constant Field Values
-
SOS_MARKER
public static final int SOS_MARKER
Start of scan- See Also:
- Constant Field Values
-
APP1_MARKER
public static final int APP1_MARKER
APP1_MARKER Reserved for application use- See Also:
- Constant Field Values
-
APP2_MARKER
public static final int APP2_MARKER
APP2_MARKER Reserved for application use- See Also:
- Constant Field Values
-
JPG0_MARKER
public static final int JPG0_MARKER
Reserved for JPEG extensions- See Also:
- Constant Field Values
-
JPG1_MARKER
public static final int JPG1_MARKER
- See Also:
- Constant Field Values
-
JPG2_MARKER
public static final int JPG2_MARKER
- See Also:
- Constant Field Values
-
JPG3_MARKER
public static final int JPG3_MARKER
- See Also:
- Constant Field Values
-
JPG4_MARKER
public static final int JPG4_MARKER
- See Also:
- Constant Field Values
-
JPG5_MARKER
public static final int JPG5_MARKER
- See Also:
- Constant Field Values
-
JPG6_MARKER
public static final int JPG6_MARKER
- See Also:
- Constant Field Values
-
JPG7_MARKER
public static final int JPG7_MARKER
- See Also:
- Constant Field Values
-
JPG8_MARKER
public static final int JPG8_MARKER
- See Also:
- Constant Field Values
-
JPG9_MARKER
public static final int JPG9_MARKER
- See Also:
- Constant Field Values
-
JPGA_MARKER
public static final int JPGA_MARKER
- See Also:
- Constant Field Values
-
JPGB_MARKER
public static final int JPGB_MARKER
- See Also:
- Constant Field Values
-
JPGC_MARKER
public static final int JPGC_MARKER
- See Also:
- Constant Field Values
-
JPGD_MARKER
public static final int JPGD_MARKER
- See Also:
- Constant Field Values
-
-
Method Detail
-
getSegment
public JFIFInputStream.Segment getSegment() throws java.io.IOException
Gets the current segment from the input stream.- Returns:
- The current segment. Returns null, if we encountered the end of the stream.
- Throws:
java.io.IOException
-
getNextSegment
public JFIFInputStream.Segment getNextSegment() throws java.io.IOException
Gets the next segment from the input stream.- Returns:
- The next segment. Returns null, if we encountered the end of the stream.
- Throws:
java.io.IOException
-
getStreamPosition
public long getStreamPosition()
-
read
public int read() throws java.io.IOExceptionReads the next byte of data from this input stream. The value byte is returned as anintin the range0to255. If no byte is available because the end of the stream has been reached, the value-1is returned. This method blocks until input data is available, the end of the stream is detected, or an exception is thrown.This method simply performs
in.read()and returns the result.- Overrides:
readin classjava.io.FilterInputStream- Returns:
- the next byte of data, or
-1if the end of the stream is reached. - Throws:
java.io.IOException- if an I/O error occurs.- See Also:
FilterInputStream.in
-
read
public int read(byte[] b, int off, int len) throws java.io.IOExceptionReads up tolenb of data from this input stream into an array of b. This method blocks until some input is available.This method simply performs
in.read(b, off, len)and returns the result.- Overrides:
readin classjava.io.FilterInputStream- Parameters:
b- the buffer into which the data is read.off- the start offset of the data.len- the maximum number of b read.- Returns:
- the total number of b read into the buffer, or
-1if there is no more data because the end of the stream has been reached. - Throws:
java.io.IOException- if an I/O error occurs.- See Also:
FilterInputStream.in
-
skip
public long skip(long n) throws java.io.IOExceptionSkips over and discardsnb of data from the input stream. Theskipmethod may, for a variety of reasons, end up skipping over some smaller number of b, possibly0. The actual number of b skipped is returned.This method simply performs
in.skip(n).- Overrides:
skipin classjava.io.FilterInputStream- Parameters:
n- the number of b to be skipped.- Returns:
- the actual number of b skipped.
- Throws:
java.io.IOException- if an I/O error occurs.
-
mark
public void mark(int readlimit)
Marks the current position in this input stream. A subsequent call to theresetmethod repositions this stream at the last marked position so that subsequent reads re-read the same b.The
readlimitargument tells this input stream to allow that many b to be read before the mark position gets invalidated.This method simply performs
in.mark(readlimit).- Overrides:
markin classjava.io.FilterInputStream- Parameters:
readlimit- the maximum limit of b that can be read before the mark position becomes invalid.- See Also:
FilterInputStream.in,FilterInputStream.reset()
-
reset
public void reset() throws java.io.IOExceptionRepositions this stream to the position at the time themarkmethod was last called on this input stream.This method simply performs
in.reset().Stream marks are intended to be used in situations where you need to read ahead a little to see what's in the stream. Often this is most easily done by invoking some general parser. If the stream is of the type handled by the parse, it just chugs along happily. If the stream is not of that type, the parser should toss an exception when it fails. If this happens within readlimit b, it allows the outer code to reset the stream and try another parser.
- Overrides:
resetin classjava.io.FilterInputStream- Throws:
java.io.IOException- if the stream has not been marked or if the mark has been invalidated.- See Also:
FilterInputStream.in,FilterInputStream.mark(int)
-
markSupported
public boolean markSupported()
Tests if this input stream supports themarkandresetmethods. This method simply performsin.markSupported().- Overrides:
markSupportedin classjava.io.FilterInputStream- Returns:
trueif this stream type supports themarkandresetmethod;falseotherwise.- See Also:
FilterInputStream.in,InputStream.mark(int),InputStream.reset()
-
-