gpt4 book ai didi

java - Java 中的平台独立图像

转载 作者:行者123 更新时间:2023-11-29 07:53:54 25 4
gpt4 key购买 nike

我正在尝试将图像绘制到包含在框架中的面板上。

假设我有一张 320 x 480 的图片。当我尝试创建一个尺寸为 320x480 的框架并将面板添加到其中时,我遇到了一个问题。

在不同的操作系统中,320x480的JFrame由于标题栏的大小不同。因此,我在 Windows XP 中的正确适合图像将无法在 Windows8 或 Ubuntu 中正确绘制。

由于图像未正确放置,因此可见灰色补丁。我尝试重写 paint 方法并使用 ImageIcon。

请提供解决方案。

TIA

代码片段

CLASS PA CONTENTS
setPreferredSize(new Dimension(500,500));
.
.
JLabel image= new JLabel();
ImageIcon background = new ImageIcon(getClass().getClassLoader().getResource("Flower.jpg"));
image.setBounds(0, 0, 500, 500);
image.setIcon(background);
this.add(image); //where "this" is extending from JPanel

CLASS PB CONTENTS
frame = new JFrame("Test");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
inserting(frame.getContentPane());

frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
frame.setResizable(false);

private void inserting(Container pane)
{
cardPanel=new JPanel();
CardLayout cards=new CardLayout();
cardPanel.setLayout(cards);

PA home= new PA();
cardPanel.add(home,"homeScreen");

pane.add(cardPanel);
}

最佳答案

根本不要调用 setSize,调用 pack(如 VGR 在他的评论中所述)。 pack 将根据其中组件的大小以及这些组件之间的间隙来调整您的 JFrame 的大小。

现在.. 您将遇到的问题是您的 JFrame 在启动时会很小。因此,重写 JPanelgetPreferredSize 方法以返回图像的尺寸:

public void getPreferredSize() {
return new Dimension(image.getWidth(), image.getHeight());
}

现在您的图像将完美适配并且您的应用程序将完全独立于操作系统。而且,不要覆盖 paint 方法。相反,覆盖 paintComponent。这是我在像您这样的情况下制作的一个小演示:

import javax.imageio.ImageIO;
import javax.swing.*;
import java.awt.*;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;


public class Drawing {
JFrame frame = new JFrame();

public Drawing() {
frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
frame.add(new Panel());
frame.pack();
frame.setVisible(true);

}

public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
new Drawing();
}
});
}

class Panel extends JPanel {
BufferedImage image = null;

Panel() {
try {
image = ImageIO.read(new File("path-to-your-image"));
} catch (IOException e) {
e.printStackTrace();
}
}

@Override
protected void paintComponent(Graphics g) {
super.paintComponent(g);
g.drawImage(image, 0, 0, this);
}

@Override
public Dimension getPreferredSize() {
// Panel will be sizes based on dimensions of image
return new Dimension(image.getWidth(), image.getHeight());
}
}
}

关于java - Java 中的平台独立图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19271491/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com