109110111112113114115
public final ImageInfo getImageInfo(File file, Map params) throws ImageReadException, IOException { if (!canAcceptExtension(file)) return null; return getImageInfo(new ByteSourceFile(file), params); }
127128129130131132133
public final FormatCompliance getFormatCompliance(File file) throws ImageReadException, IOException { if (!canAcceptExtension(file)) return null; return getFormatCompliance(new ByteSourceFile(file)); }