gpt4 book ai didi

java - 在 Java 中下载动画 gif 图像

转载 作者:行者123 更新时间:2023-11-30 03:10:50 33 4
gpt4 key购买 nike

我正在尝试使用 Java 下载动画 gif 图像,但下载的图像丢失了动画。这是我的代码:

    BufferedImage image = ImageIO.read(new URL("http://gifntext.com/images/football_small.gif"));
ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
BufferedOutputStream bufferedOutputStream = new BufferedOutputStream(outputStream);
image.flush();
ImageIO.write(image, "gif", bufferedOutputStream);
bufferedOutputStream.flush();

byte[] bytes = outputStream.toByteArray();
File file = new File("/home/toan/football_small.gif");
FileOutputStream out = new FileOutputStream(file);

out.write(bytes);
out.flush();
out.close();
outputStream.close();
bufferedOutputStream.close();

这段代码有什么问题吗?提前致谢。

最佳答案

关于java - 在 Java 中下载动画 gif 图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33670623/

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