Icefaces 图形图像支持的文件类型
当您传递 byte[] 时支持哪些图像文件类型?
Which image filetypes are supported when you pass through a byte[]?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
当您传递 byte[] 时支持哪些图像文件类型?
Which image filetypes are supported when you pass through a byte[]?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
事实上,任何与
image/*
匹配的内容都可以。请参阅此处查看列表。您仅依赖于所使用的网络浏览器/客户端是否支持图像类型。顺便说一句,可以肯定的是:您不能让值指向
byte[]
。它必须指向返回相关byte[]
的 URL。 Servlet 非常适合于此。 这里是一个基本示例。In fact, just anything which matches
image/*
. See here for a list. You're only dependent on the webbrowser/client used whether it supports the image type.By the way and to be sure: you can't let the value point to a
byte[]
. It must point to an URL which returns thebyte[]
in question. A servlet is perfectly suitable for this. Here is a basic example.