JButton显示在图标后面

时间:2012-07-15 20:16:56

标签: java swing scale jbutton imageicon

我正在尝试创建一个扩展JButton的自定义按钮。它接收文本以及按钮所需的宽度和高度。构造函数根据输入的宽度和高度缩放图像按钮。但是,正如您在附图中看到的那样,出现了问题。

Attempt to create button.

这是我的班级:

class GameButton extends JButton {
    public GameButton(String text, int width, int height) {
        BufferedImage image = null;
        try {
            image = ImageIO.read(new File("Images/Other/buttonImage.png"));
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

        // Create new (blank) image of required (scaled) size
        BufferedImage scaledImage = new BufferedImage(width, height,
                BufferedImage.TYPE_INT_ARGB);

        // Paint scaled version of image to new image
        Graphics2D graphics2D = scaledImage.createGraphics();
        graphics2D.setRenderingHint(RenderingHints.KEY_INTERPOLATION,
                RenderingHints.VALUE_INTERPOLATION_BILINEAR);
        graphics2D.drawImage(image, 0, 0, width, height, null);
        // clean up
        graphics2D.dispose();

        ImageIcon icon = new ImageIcon(scaledImage);

        setIcon(icon);
        setMargin(new Insets(0, 0, 0, 0));
        setIconTextGap(0);
        setBorderPainted(false);
        setOpaque(false);
        setBorder(null);
        setText(text);
        setSize(width, height);
    }
}

原始按钮图像仍在绘制,看起来好像图像可能无法正确缩放。 有什么想法吗?

谢谢!

1 个答案:

答案 0 :(得分:0)

为Button设置Horizo​​ntalTextPosition

jButton1.setHorizontalTextPosition(javax.swing.SwingConstants.CENTER);