throw new ImageReadException("Parsing XPM file failed, "
+ "signature isn't '/* XPM */'");
}
final XpmParseResult xpmParseResult = new XpmParseResult();
xpmParseResult.cParser = new BasicCParser(new ByteArrayInputStream(
preprocessedFile.toByteArray()));
xpmParseResult.xpmHeader = parseXpmHeader(xpmParseResult.cParser);
canThrow = true;
return xpmParseResult;
} finally {