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.
我最近开始将 PlayN 用于一个爱好项目,现在偶然发现了一个问题。
我想在图像上绘制一些线条和文本并将此图像保存以供以后使用。在 Java 中,我只会制作一个 BufferedImage 并使用它的 graphicsBuffered 来绘制,但我在 PlayN 中找不到任何类似的解决方案。
这有可能吗,如果可以,怎么办?
我不知何故需要能够将 BufferedImage 转换为 Image 和其他方式。
创建一个 CanvasImage,将图像绘制到 CanvasImage 上,然后在其上绘制文本和线条。然后,您可以使用 ImageLayer 中的 CanvasImage 将其放入场景图中。