Java Swing Icon createTransparentIcon(int width)

Here you can find the source of createTransparentIcon(int width)

Description

create Transparent Icon

License

Open Source License

Declaration

private static ImageIcon createTransparentIcon(int width) 

Method Source Code

//package com.java2s;
/**//w w  w . j  a  v  a  2s .co  m
 * DataCleaner (community edition)
 * Copyright (C) 2014 Neopost - Customer Information Management
 *
 * This copyrighted material is made available to anyone wishing to use, modify,
 * copy, or redistribute it subject to the terms and conditions of the GNU
 * Lesser General Public License, as published by the Free Software Foundation.
 *
 * 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 Lesser General Public License
 * for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this distribution; if not, write to:
 * Free Software Foundation, Inc.
 * 51 Franklin Street, Fifth Floor
 * Boston, MA  02110-1301  USA
 */

import java.awt.Image;
import java.awt.image.BufferedImage;

import javax.swing.ImageIcon;

public class Main {
    private static ImageIcon createTransparentIcon(int width) {
        final Image image = new BufferedImage(width, width, BufferedImage.TYPE_4BYTE_ABGR);
        return new ImageIcon(image);
    }
}

Related

  1. createIcon(URL resource)
  2. createIconFromResource(ClassLoader loader, String resourceName)
  3. createIconFromStream(InputStream input)
  4. createTransparentIcon()
  5. createTransparentIcon(final int width, final int height)
  6. darken(Icon icon)
  7. emptyIcon(final int width, final int height)
  8. getApplicationIcons()
  9. getBadgedIcon(Icon icon, Icon badge)