Java BufferedImage Load loadImage(String url)

Here you can find the source of loadImage(String url)

Description

load Image

License

Open Source License

Declaration

public static Image loadImage(String url) throws IOException 

Method Source Code


//package com.java2s;
/*//www .jav a2  s.c  o  m
 * Copyright (C) 2008-2015 by Holger Arndt
 *
 * This file is part of the Universal Java Matrix Package (UJMP).
 * See the NOTICE file distributed with this work for additional
 * information regarding copyright ownership and licensing.
 *
 * UJMP is free software; you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * UJMP is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with UJMP; if not, write to the
 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
 * Boston, MA  02110-1301  USA
 */

import java.awt.Image;

import java.io.IOException;
import java.io.InputStream;

import javax.imageio.ImageIO;

public class Main {
    public static Image loadImage(String url) throws IOException {
        InputStream stream = ClassLoader.getSystemClassLoader().getResourceAsStream(url);
        Image image = ImageIO.read(stream);
        return image;
    }

    public static InputStream getResourceAsStream(String url) {
        InputStream stream = ClassLoader.getSystemClassLoader().getResourceAsStream(url);
        return stream;
    }
}

Related

  1. loadImage(String imageName)
  2. loadImage(String imageName, Component c)
  3. loadImage(String path)
  4. loadImage(String path)
  5. loadImage(String resourceName)
  6. loadImage(URL resource)
  7. loadImage(URL url)
  8. loadImageData(BufferedImage image)
  9. loadImageData(String name)