gpt4 book ai didi

java - SwingFXUtils 图像序列化替代方案(Javafx、Swing、Raspberry Pi)

转载 作者:行者123 更新时间:2023-11-30 02:08:09 26 4
gpt4 key购买 nike

我的 JavaFX 应用程序的一个用例是在一侧加载图像,通过 TCP 套接字对其进行序列化,以在另一侧将其显示为 JavaFX 图像。

为了实现这一点,我使用 SwingFXUtils.fromFXImage()SwingFXUtils.toFXImage() 来创建和读取 BufferedImage ,它可以是已连载。

一切正常。但我想在树莓派上运行显示端。我发现,ARM 上的 JavaFX 中没有集成 Swing 组件,因此在 Raspi 上使用 SwingFXUtils 时,我收到 NoClassDefFoundError 错误。

请建议我如何在不使用 SwingFXUtils 的情况下创建和读取可序列化的图像对象?

最佳答案

谢谢您的回答。

@haraldK 当然,我在序列化之前已将 BufferedImage 写入 ByteArray 中。我昨晚的解释不够准确。抱歉。

我找到了解决问题的方法:为了使其在 Raspberry Pi 上工作,我只需用 InputStream 替换 BufferedImage 来读取我的 ByteArray > 包含图像数据。这使我能够使用 InputStream 创建 JavaFX Image 对象,而不是使用 SwingFXUtils

之前:

BufferedImage bufferedImage = ImageIO.read(new ByteArrayInputStream(imageUpdate.getImageByteArray()));

imageView.setImage(SwingFXUtils.toFXImage(bufferedImage, null));

,其中 imageUpdate 是一个 ImageUpdate 对象,用于通过 TCP 套接字传输数据(包含图像和附加数据)。

如前所述,这会产生

Exception in thread "..." java.lang.NoClassDefFoundError: javafx/embed/swing/JFXPanel

在 Raspberry Pi 上,因为 ARM 架构的 JavaFX 端口中缺少 Swing 类。

之后:

InputStream inputStream = new ByteArrayInputStream(imageUpdate.getImageByteArray());

imageView.setImage(new Image(inputStream));

这个解决方案现在在我的 Raspberry Pi 上就像一个魅力。

关于java - SwingFXUtils 图像序列化替代方案(Javafx、Swing、Raspberry Pi),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50900945/

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