Java将GIF图像转换为PNG格式
我必须构建一个 Java servlet,它接收图像并返回转换为 PNG 格式的图像。我怎样才能实现这个目标? 正如一些示例所示,转换并不是指更改文件扩展名。
提前致谢!
I have to build a Java servlet that receives an image and returns that image converted to PNG format. How can I achieve this?
By converting I don't mean changing the file extension, like some examples suggest.
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试一下:
阅读 ImageIO。
当然,您可能想从流中读取和写入。
Try this out:
Read ImageIO.
Of course, you may want to read and write from an stream instead.
使用 ImageIo 以您想要的任何格式保存图像。
Use ImageIo to save an Image in any format your want.