1226122712281229123012311232
* @return A BufferedImage. * @see SanselanConstants */ public static BufferedImage getBufferedImage(File file) throws ImageReadException, IOException { return getBufferedImage(new ByteSourceFile(file), null); }
1250125112521253125412551256
* @return A BufferedImage. * @see SanselanConstants */ public static BufferedImage getBufferedImage(File file, Map params) throws ImageReadException, IOException { return getBufferedImage(new ByteSourceFile(file), params); }
9596979899100101
+ file.getName()); if (!canAcceptExtension(file)) return null; return getMetadata(new ByteSourceFile(file), params); }
119120121122123124125
throws ImageReadException, IOException { if (!canAcceptExtension(file)) return null; return getImageInfo(new ByteSourceFile(file), params); }
140141142143144145146
throws ImageReadException, IOException { if (!canAcceptExtension(file)) return null; return getFormatCompliance(new ByteSourceFile(file)); }
167168169170171172173
throws ImageReadException, IOException { if (!canAcceptExtension(file)) return null; return getAllBufferedImages(new ByteSourceFile(file)); }
226227228229230231232
throws ImageReadException, IOException { if (!canAcceptExtension(file)) return null; return getBufferedImage(new ByteSourceFile(file), params); }
270271272273274275276
{ if (!canAcceptExtension(file)) return null; return getImageSize(new ByteSourceFile(file), params); }
306307308309310311312
return null; if (debug) System.out.println(getName() + ": " + file.getName()); return getICCProfileBytes(new ByteSourceFile(file), params); }
327328329330331332333
return null; if (debug) System.out.println(getName() + ": " + file.getName()); return dumpImageFile(new ByteSourceFile(file)); }