1

如何将 png 分配给变量,然后在特定的 x 和 y 上绘制它?请不要使用 OpenGL 绑定等。

4

1 回答 1

1

You can save the image in a org.newdawn.slick.Image with

Image img = new Image("/path/to/img");

Then draw it in the render function with

img.draw(x, y);

Image.Image(String ref)

Image.draw(float x, float y)

于 2013-07-14T08:04:02.503 回答