如何将 Java 图像转换为 JPEG 字节数组?
有没有办法转换 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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 calltoByteArray[]
of the stream object to obtain the byte array.