gpt4 book ai didi

java - 将 WriteableImage 转换为 BufferedImage

转载 作者:行者123 更新时间:2023-12-01 16:25:44 25 4
gpt4 key购买 nike

我需要一些有关 Java 中的 Writable- 和 BufferedImages 的帮助(11,Javafx):

如何将 WritabeImage 转换为 BufferedImage? - 不使用 SwingFXUtils.fromFXImage()

对我来说,找到一个没有 SwingFXUtils.fromFXImage() 的解决方案非常重要。我已经问过谷歌,但我得到的唯一结果包含 SwingFXUtils.fromFXImage()。所以我请求你的专业知识。

你能帮我一下吗?

谢谢!

最佳答案

感谢您的帮助!

这就是我的代码的样子(包括我需要避免的“SwingFXUtils”):

static public void createImg(Node NODE, String name) {
WritableImage SNAPSHOT = NODE.snapshot(new SnapshotParameters(), null);
File file = new File(Properties.getSettingsPath() + File.separator + name + ".png");
try {
ImageIO.write(SwingFXUtils.fromFXImage(SNAPSHOT, null), "png", file);
} catch (IOException e) {
e.printStackTrace();
}
}

关于java - 将 WriteableImage 转换为 BufferedImage,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62153843/

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