894895896897898899900
* @return An instance of IImageMetadata. * @see IImageMetadata */ public static IImageMetadata getMetadata(byte bytes[], Map params) throws ImageReadException, IOException { return getMetadata(new ByteSourceArray(bytes), params); }
1016101710181019102010211022
* Byte array containing an image file. * @return A description of the image file's structure. */ public static String dumpImageFile(byte bytes[]) throws ImageReadException, IOException { return dumpImageFile(new ByteSourceArray(bytes)); }
1043104410451046104710481049
return imageParser.dumpImageFile(byteSource); } public static FormatCompliance getFormatCompliance(byte bytes[]) throws ImageReadException, IOException { return getFormatCompliance(new ByteSourceArray(bytes)); }
1089109010911092109310941095
* Byte array containing an image file. * @return A vector of BufferedImages. */ public static ArrayList getAllBufferedImages(byte bytes[]) throws ImageReadException, IOException { return getAllBufferedImages(new ByteSourceArray(bytes)); }
1208120912101211121212131214
* @return A BufferedImage. * @see SanselanConstants */ public static BufferedImage getBufferedImage(byte bytes[]) throws ImageReadException, IOException { return getBufferedImage(new ByteSourceArray(bytes), null); }
1232123312341235123612371238
* @return A BufferedImage. * @see SanselanConstants */ public static BufferedImage getBufferedImage(byte bytes[], Map params) throws ImageReadException, IOException { return getBufferedImage(new ByteSourceArray(bytes), params); }
38394041424344
public IccProfileInfo getICCProfileInfo(ICC_Profile icc_profile) { if (icc_profile == null) return null; return getICCProfileInfo(new ByteSourceArray(icc_profile.getData())); }
46474849505152
public IccProfileInfo getICCProfileInfo(byte bytes[]) { if (bytes == null) return null; return getICCProfileInfo(new ByteSourceArray(bytes)); }
307308309310311312313
public Boolean issRGB(ICC_Profile icc_profile) { if (icc_profile == null) return null; return issRGB(new ByteSourceArray(icc_profile.getData())); }
315316317318319320321
public Boolean issRGB(byte bytes[]) { if (bytes == null) return null; return issRGB(new ByteSourceArray(bytes)); }