Java ImageIcon Create createImageIcon(Class bezugsklasse, String path)

Here you can find the source of createImageIcon(Class bezugsklasse, String path)

Description

create Image Icon

License

Open Source License

Declaration

public static ImageIcon createImageIcon(Class<?> bezugsklasse, String path) 

Method Source Code

//package com.java2s;
/*/*  w  w w.j a  v a 2 s. co  m*/
 * Copyright (C) 2010, 2011, 2012 by Arne Kesting, Martin Treiber, Ralph Germ, Martin Budden
 *                                   <movsim.org@gmail.com>
 * -----------------------------------------------------------------------------------------
 * 
 * This file is part of
 * 
 * MovSim - the multi-model open-source vehicular-traffic simulator.
 * 
 * MovSim is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 * 
 * MovSim 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 General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with MovSim. If not, see <http://www.gnu.org/licenses/>
 * or <http://www.movsim.org>.
 * 
 * -----------------------------------------------------------------------------------------
 */

import java.awt.Image;

import java.net.URL;
import javax.swing.ImageIcon;

public class Main {
    public static ImageIcon createImageIcon(Class<?> bezugsklasse, String path) {
        final URL imgURL = bezugsklasse.getResource(path);
        if (imgURL != null) {
            return new ImageIcon(imgURL);
        }
        System.err.println("Couldn't find file: " + path);
        return null;
    }

    public static ImageIcon createImageIcon(Class<?> bezugsklasse, String path, int width, int height) {
        final URL imgURL = bezugsklasse.getResource(path);
        if (imgURL != null) {
            return new ImageIcon(
                    new ImageIcon(imgURL).getImage().getScaledInstance(width, height, Image.SCALE_SMOOTH));
        }
        System.err.println("Couldn't find file: " + path);
        return null;
    }

    /**
     * Creates the image icon.
     * 
     * @param path
     *            the path
     * @param width
     *            the width
     * @param height
     *            the height
     * @return the image icon
     */
    public static ImageIcon createImageIcon(String path, int width, int height) {
        return new ImageIcon(new ImageIcon(path).getImage().getScaledInstance(width, height, Image.SCALE_SMOOTH));

    }
}

Related

  1. createImageIcon(Class clazz, String path)
  2. createImageIcon(Class clazz, String pathToImage, int sizeX, int sizeY)
  3. createImageIcon(Class theClass, String path, String description)
  4. createImageIcon(ClassLoader classloader, String path, String description)
  5. createImageIcon(File f, String description)
  6. createImageIcon(final Icon icon)
  7. createImageIcon(final String src)