55565758596061
public IccProfileInfo getICCProfileInfo(File file) { if (file == null) return null; return getICCProfileInfo(new ByteSourceFile(file)); }
324325326327328329330
public Boolean issRGB(File file) { if (file == null) return null; return issRGB(new ByteSourceFile(file)); }
96979899100101102
+ file.getName()); if (!canAcceptExtension(file)) return null; return getMetadata(new ByteSourceFile(file), params); }
120121122123124125126
throws ImageReadException, IOException { if (!canAcceptExtension(file)) return null; return getImageInfo(new ByteSourceFile(file), params); }
141142143144145146147
throws ImageReadException, IOException { if (!canAcceptExtension(file)) return null; return getFormatCompliance(new ByteSourceFile(file)); }
168169170171172173174
throws ImageReadException, IOException { if (!canAcceptExtension(file)) return null; return getAllBufferedImages(new ByteSourceFile(file)); }
227228229230231232233
throws ImageReadException, IOException { if (!canAcceptExtension(file)) return null; return getBufferedImage(new ByteSourceFile(file), params); }
271272273274275276277
{ if (!canAcceptExtension(file)) return null; return getImageSize(new ByteSourceFile(file), params); }
307308309310311312313
return null; if (debug) System.out.println(getName() + ": " + file.getName()); return getICCProfileBytes(new ByteSourceFile(file), params); }
328329330331332333334
return null; if (debug) System.out.println(getName() + ": " + file.getName()); return dumpImageFile(new ByteSourceFile(file)); }