gpt4 book ai didi

java - 为什么 getScaledInstance() 不起作用?

转载 作者:行者123 更新时间:2023-11-30 03:12:33 25 4
gpt4 key购买 nike

所以,我正在尝试创建一个垄断游戏。我正在尝试将(板的)图像加载到 JPanel 上。

我首先要将图像缩放为 1024*1024 图像。

我已经让图像出现在 JPanel 上(因此文件地址有效)。

但是每当我使用 getScaledInstance() 方法时,图像就不会出现

import javax.swing.ImageIcon;
import javax.swing.JFrame;
import javax.swing.JPanel;

import java.awt.Color;
import java.awt.Graphics;
import java.awt.Image;
import java.awt.SystemColor;

//a class that represent the board (JFrame) and all of it components
public class Board extends JFrame {
private final int SCALE;
private JPanel panel;

public Board(int scale) {
getContentPane().setBackground(SystemColor.textHighlightText);
// SCALE = scale;
SCALE = 1;
// set up the JFrame
setResizable(false);
setTitle("Monopoly");
// set size to a scale of 1080p
setSize(1920 * SCALE, 1080 * SCALE);
getContentPane().setLayout(null);

panel = new JPanel() {
public void paint(Graphics g) {
Image board = new ImageIcon(
"C:\\Users\\Standard\\Pictures\\Work\\Monopoly 1.jpg")
.getImage();
board = board.getScaledInstance(1022, 1024, java.awt.Image.SCALE_SMOOTH);

g.drawImage(board, 0, 0, null);
}
};
panel.setBounds(592, 0, 1024, 1024);
getContentPane().add(panel);
}

public static void main(String[] args) {
Board board = new Board(1);
board.setVisible(true);
board.panel.repaint();
}
}

每当我删除 board.getScaledInstance() 代码行时,图像就会出现(尽管未缩放),但是当我添加该代码行时,图像根本不会出现。

为什么会发生这种情况?

最佳答案

你做错了几件事:

  • 您正在重写paint,而不是paintComponent。这是很危险的,因为你正在覆盖一个做了太多事情并且承担太多责任的图像。如果不小心执行此操作,可能会导致显着的图像副作用,并且还会由于绘制而不是双缓冲而导致感知动画缓慢。
  • 您没有在重写中调用 super 绘制方法,这会导致绘制伪影的累积并破坏 Swing 组件绘制链。
  • 您可能会在绘画方法中多次读取图像,该方法必须尽可能快,因为它是应用程序感知响应能力的主要决定因素。仅读取一次,然后将其保存到变量中。
  • 您正在使用空布局和 setBounds。虽然 null 布局和 setBounds() 对于 Swing 新手来说似乎是创建复杂 GUI 的最简单、最好的方法,但创建的 Swing GUI 越多,使用它们时遇到的困难就越严重。当 GUI 调整大小时,它们不会调整组件的大小,它们是增强或维护的皇家女巫,当放置在滚动 Pane 中时,它们会完全失败,在所有平台或与原始分辨率不同的屏幕分辨率上查看时,它们看起来非常糟糕.
  • 您在绘制方法中缩放图像,再次执行一些会减慢 GUI 感知响应速度的操作。相反,仅缩放图像一次,并将缩放后的图像保存到变量中。
  • 重要的是,您对原始图像和缩放后的图像使用相同的变量 board,这将导致每次调用绘制时重新缩放图像。
  • 正如 Mad 指出的那样,您应该将 this 传递给您的 g.drawImage(...) 方法调用,这样您就不会在之前绘制图像已完全读入。
  • 此外,当您不将图像用作 ImageIcon 时,请勿将图像作为文件或 ImageIcon 读取。使用 ImageIO 将其作为 BufferedImage 读入,并使用资源,而不是文件。

我也会简化事情,例如:

import java.awt.Dimension;
import java.awt.Graphics;
import java.awt.Image;
import java.awt.image.BufferedImage;
import java.io.IOException;
import java.net.URL;
import javax.imageio.ImageIO;
import javax.swing.*;

@SuppressWarnings("serial")
public class MyBoard extends JPanel {
private static final String IMG_PATH = "http://ecx.images-amazon.com/"
+ "images/I/81oC5pYhh2L._SL1500_.jpg";

// scaling constants
private static final int IMG_WIDTH = 1024;
private static final int IMG_HEIGHT = IMG_WIDTH;

// original and scaled image variables
private BufferedImage initialImg;
private Image scaledImg;

public MyBoard() throws IOException {
URL url = new URL(IMG_PATH);
initialImg = ImageIO.read(url); // read in original image

// and scale it *once* and store in variable. Can even discard original
// if you wish
scaledImg = initialImg.getScaledInstance(IMG_WIDTH, IMG_HEIGHT,
Image.SCALE_SMOOTH);
}

// override paintComponent, not paint
@Override // and don't forget the @Override annotation
protected void paintComponent(Graphics g) {
super.paintComponent(g); // call the super's painting method

// just to be safe -- check that it's not null first
if (scaledImg != null) {
// use this as a parameter to avoid drawing an image before it's
// ready
g.drawImage(scaledImg, 0, 0, this);
}
}

// so our GUI is sized the same as the image
@Override
public Dimension getPreferredSize() {
if (isPreferredSizeSet() || scaledImg == null) {
return super.getPreferredSize();
}
int w = scaledImg.getWidth(this);
int h = scaledImg.getHeight(this);
return new Dimension(w, h);
}

private static void createAndShowGui() {
MyBoard mainPanel = null;
try {
mainPanel = new MyBoard();
} catch (IOException e) {
e.printStackTrace();
System.exit(-1);
}

JFrame frame = new JFrame("My Board");
frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
frame.getContentPane().add(mainPanel);
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}

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

关于java - 为什么 getScaledInstance() 不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33313911/

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