作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想将 BufferedImage 转换为 gif。我已经使用函数将 BufferedImage 转换为 jpeg,并且输出为 Byte[],因此我可以使用套接字连接通过 inet 发送它。
我需要一个类似于此 jpeg 编码函数的 gif 编码函数:
public static byte[] getImageAsJPEG(BufferedImage image) throws ImageFormatException, IOException {
ByteArrayOutputStream output = new ByteArrayOutputStream();
JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(output);
JPEGEncodeParam param = encoder.getDefaultJPEGEncodeParam(image);
param.setQuality(0.9f, false);
encoder.setJPEGEncodeParam(param);
encoder.encode(image);
return output.toByteArray();
}
最佳答案
用途:
ImageIO.write(image, "GIF", output);
如:
public static byte[] getImageAsGIF(BufferedImage image) throws ImageFormatException, IOException {
ByteArrayOutputStream output = new ByteArrayOutputStream();
ImageIO.write(image, "GIF", output);
return output.toByteArray();
}
关于java - 如何在java中将BufferedImage转换为gif,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25871695/
我是一名优秀的程序员,十分优秀!