我试图在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);
}
}
答案 0 :(得分:0)
最后我所做的是(根据评论的建议)将缩放移到paint方法之外。我创建了一个公共方法,该方法从父组件调用,以通知面板新的大小,并根据该大小缩放图片:
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);
}
}
我想我应该在某些听众身上做这个,因为这不是很优雅,但我不知道该怎么做。