* Creates a JpegCommentReader for a JPEG stream.
* @param is JPEG stream. Stream will be closed.
*/
public JpegCommentReader(InputStream is) throws JpegProcessingException
{
this(new JpegSegmentReader(is).readSegment(JpegSegmentReader.SEGMENT_APPD));
}