如何将 Java 图像转换为 JPEG 字节数组?

发布于 2024-08-27 16:51:56 字数 87 浏览 4 评论 0原文

有没有办法转换 Java 图像,将其编码为 JPEG(但不将其保存到文件中),并将其存储为字节数组? (byte[]) 我需要 JPEG 编码图像作为字节数组。

Is there a way to convert a Java Image, encode it into JPEG (but not saving it to a file), and store it as an array of bytes? (byte[]) I need the JPEG-encoded image as an array of bytes.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

生生漫 2024-09-03 16:51:56

ImageIO有多种读取和写入图像的方法。

要写入字节数组,您可以写入 <代码>ByteArrayOutputStream。然后调用流对象的toByteArray[]来获取字节数组。

ImageIO has a number of methods for reading and writing images.

For writing to array of bytes, you can write to ByteArrayOutputStream. And then call toByteArray[] of the stream object to obtain the byte array.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文