Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一张地图,分为 375x375 块 16 像素。我想开发一个 java 应用程序将这些图像拼接成一个大图像。我将如何在java中执行此操作?有什么有用的库吗?
BufferedImage
Graphics
g.drawImage(tile, x, y)
当然,将视图内的图块直接绘制到游戏的渲染表面(如果这是最终目的)可能更有意义(并且会占用更少的内存)。
有什么有用的库吗?
为此矫枉过正。使用上述任何一种技术,只需要几行代码。