Lines Matching defs:read

205                     // we have to check whether we can read, write,
214 security.checkPermission(new FilePermission(filepath, "read, write, delete"));
232 * may be necessary to save previously read information in a cache
233 * since the underlying stream does not allow data to be re-read.
981 * program can read an image, modify it in some way, and write it
1271 * <code>ImageReader</code> claims to be able to read the
1278 * <p> Note that there is no <code>read</code> method that takes a
1283 * <code>ImageReader</code>s that can read directly from a
1287 * @param input a <code>File</code> to read from.
1296 public static BufferedImage read(File input) throws IOException {
1301 throw new IIOException("Can't read input file!");
1308 BufferedImage bi = read(stream);
1321 * <code>ImageReader</code> claims to be able to read the
1329 * <code>ImageReader</code>s that can read directly from an
1334 * <code>InputStream</code> after the read operation has completed;
1337 * @param input an <code>InputStream</code> to read from.
1346 public static BufferedImage read(InputStream input) throws IOException {
1352 BufferedImage bi = read(stream);
1365 * registered <code>ImageReader</code> claims to be able to read
1373 * <code>ImageReader</code>s that can read directly from a
1377 * @param input a <code>URL</code> to read from.
1386 public static BufferedImage read(URL input) throws IOException {
1400 bi = read(stream);
1415 * <code>ImageReader</code> claims to be able to read the stream,
1419 * close the provided <code>ImageInputStream</code> after the read
1423 * @param stream an <code>ImageInputStream</code> to read from.
1432 public static BufferedImage read(ImageInputStream stream)
1448 bi = reader.read(0, param);