* @throws FormatIOException
*/
@Override
public BufferedImage open(final InputStream aInputStream) throws FormatIOException {
try {
return new PNMImage(aInputStream).getBufferedImage();
} catch (final IOException details) {
throw new FormatIOException(details);
}
}