gpt4 book ai didi

java - 带有图像的 fillRect 方法

转载 作者:行者123 更新时间:2023-12-02 05:07:22 24 4
gpt4 key购买 nike

我正在尝试使用 Java 中的 fillRect 方法用图像填充矩形。有没有办法使用 fillRect 方法来做到这一点?

这是我正在编写的代码:

    private int x = 0;
private int y = 0;
static int WIDTH = 1;
static int HEIGHT = 1;
private Image image = new ImageIcon("Golf_green.png").getImage();

public BackGround() {
WIDTH = 30;
HEIGHT = 30;
}

public void paint(Graphics2D g) {
g.drawImage(image, x, y, WIDTH, HEIGHT, "BLACK", , arg7, arg8, );
}

最佳答案

(fill rect with tiled image) is there a way to do it using the fillrect method?

没有。

相反,应在查看区域的宽度和高度上平铺图像。要获得仅适用于特定矩形的效果,请将该矩形设置为剪辑(在平铺之前)。

关于java - 带有图像的 fillRect 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27654781/

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