1

我试图在 JPanel 上设置一个背景图像,该图像会随面板调整大小。我在显示图片时没有问题,但是一旦我使用:

background = background.getScaledInstance(300, -1, Image.SCALE_SMOOTH );

什么都没有显示。关于为什么的任何想法?

编码:

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

public class LoginJPanel extends JPanel
{
  private Image background;

  public LoginJPanel()
  {
    super();

    background = new ImageIcon("C:\\ASYS\\Stories\\Authentication UI\\AVDsplashscreen_tiny.jpg").getImage();
  }

  @Override
  protected void paintComponent(Graphics g)
  {
    super.paintComponent(g);
    background = background.getScaledInstance(300, -1, Image.SCALE_SMOOTH );
    g.drawImage(background, 0, 0, this);
  }

  public static void main (String[] args)
  {
         LoginJPanel ip = new LoginJPanel();
        JFrame jf = new JFrame ();
        jf.setLayout (new BorderLayout ());
        jf.add (ip, BorderLayout.CENTER);
        jf.setSize (1000, 600);
        jf.setLocation (150, 150);
        jf.setVisible (true);
        jf.setDefaultCloseOperation (JFrame.EXIT_ON_CLOSE);
  }
}
4

1 回答 1

0

最后我所做的是(如评论所建议的)将缩放移到绘制方法之外。我创建了一个从父组件调用的公共方法,以通知面板有关新尺寸的信息,并据此缩放图片:

 public void initSize(int _width, int _height)
  {
    int h = background.getHeight(null);
    int w = background.getWidth(null);

    if (w - _width > h - _height)
    {
      scaleVertically(_width, _height);
    }
    else
    {
      scaleHorizontally(_width, _height);
    }
  }

我想我应该对一些听众这样做,因为这不是很优雅,但我不知道该怎么做。

于 2012-07-13T07:01:50.083 回答