Java ImageIcon getOpenSwingImage(String name, ImageIcon defaultIcon)

Here you can find the source of getOpenSwingImage(String name, ImageIcon defaultIcon)

Description

get Open Swing Image

License

Open Source License

Declaration

public static ImageIcon getOpenSwingImage(String name, ImageIcon defaultIcon) 

Method Source Code

//package com.java2s;
/*/*ww w.  ja v  a  2s.co m*/
 * OpenSwingUtil.java  7/23/13 12:43 PM
 *
 * Copyright (C) 2012-2013 Nick Ma
 *
 * This program 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 any later version.
 * This program 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.
 */

import java.awt.*;
import javax.swing.*;

public class Main {
    public static ImageIcon getOpenSwingImage(String name) {
        return getOpenSwingImage(name, null);
    }

    public static ImageIcon getOpenSwingImage(String name, ImageIcon defaultIcon) {
        ImageIcon icon = null;
        try {
            java.net.URL url = ClassLoader.getSystemResource("com/sunking/swing/images/" + name);
            icon = new ImageIcon(url);
        } catch (Exception ex) {
        }
        if (icon == null || icon.getImageLoadStatus() != MediaTracker.COMPLETE || icon.getIconHeight() <= 0) {
            icon = defaultIcon;
        }
        return icon;
    }
}

Related

  1. generateImageIcon(Color color, int size, Insets insets)
  2. getBorderedIcon(ImageIcon icon)
  3. getByteImage(ImageIcon icon)
  4. getDisabledIcon(ImageIcon icon)
  5. getHeight(ImageIcon imagen)
  6. getRenderedImage(ImageIcon icon)
  7. getSizeOfImage(ImageIcon imgIn)
  8. getThumbImage(ImageIcon myLoadedImageIcon, int thumbHeight, int thumbWidth)
  9. getThumbnail(ImageIcon src, int maxWidth)