217218219220221222223
Map params) throws ImageReadException, IOException; public final BufferedImage getBufferedImage(byte bytes[], Map params) throws ImageReadException, IOException { return getBufferedImage(new ByteSourceArray(bytes), params); }
253254255256257258259
} public final Dimension getImageSize(byte bytes[], Map params) throws ImageReadException, IOException { return getImageSize(new ByteSourceArray(bytes), params); }
288289290291292293294
} public final byte[] getICCProfileBytes(byte bytes[], Map params) throws ImageReadException, IOException { return getICCProfileBytes(new ByteSourceArray(bytes), params); }
315316317318319320321
throws ImageReadException, IOException; public final String dumpImageFile(byte bytes[]) throws ImageReadException, IOException { return dumpImageFile(new ByteSourceArray(bytes)); }
39404142434445
public IccProfileInfo getICCProfileInfo(ICC_Profile icc_profile) { if (icc_profile == null) return null; return getICCProfileInfo(new ByteSourceArray(icc_profile.getData())); }
47484950515253
public IccProfileInfo getICCProfileInfo(byte bytes[]) { if (bytes == null) return null; return getICCProfileInfo(new ByteSourceArray(bytes)); }
308309310311312313314
public Boolean issRGB(ICC_Profile icc_profile) { if (icc_profile == null) return null; return issRGB(new ByteSourceArray(icc_profile.getData())); }
316317318319320321322
public Boolean issRGB(byte bytes[]) { if (bytes == null) return null; return issRGB(new ByteSourceArray(bytes)); }
77787980818283
} public final IImageMetadata getMetadata(byte bytes[], Map params) throws ImageReadException, IOException { return getMetadata(new ByteSourceArray(bytes), params); }
111112113114115116117
} public final ImageInfo getImageInfo(byte bytes[], Map params) throws ImageReadException, IOException { return getImageInfo(new ByteSourceArray(bytes), params); }