用于识别自定义图像格式的浏览器插件
我有自定义文件格式的图像(基本上包含 RAW 数据) 而且我想让它们在浏览器中可见(无需将它们转换为 标准格式,例如 jpg/png)。
是否可以编写一个可以读取 my-custom-format 的浏览器插件 并在浏览器中显示图像(比如 PDF 阅读器)?
我可以使用 Flash 来做到这一点,但我正在尝试看看是否可以避免这样做 下载 Flash SWF 以显示图像。
浏览器插件/扩展可以从网络获取二进制数据,对其进行处理并进行处理吗? 将其渲染在浏览器屏幕上的特定区域?哪些浏览器会 哪些是可能的,哪些是不可能的?
I have images that are in a custom file-format (basically containing RAW data)
and and I want to have them viewable in a browser (without converting them to
standard formats such as jpg/png).
Is it possible to write a browser plugin that would read my-custom-format
and display the images in the browser (like say a PDF reader) ?
I can do this using Flash, but I am trying to see if I can avoid having to
download the Flash SWF to display the image.
Can a browser plugin/extension get binary data from the web, process it and
render it on a specific area on the browser screen ? Which browsers would it
be possible on and which ones would it not be ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
XMLHttpRequest
下载二进制文件并显示在元素上,您可以在其中完全控制每个像素。
现在,如果您的意思是希望浏览器本机识别您的自定义图像格式,这可能会很棘手。
You can download binary file with
XMLHttpRequest
and display in on<canvas>
element, where you have full control over each pixel.Now if you mean you want the browser to natively recognize your custom image format this could be tricky.
是的,您可以在所有浏览器中执行此操作。 ActiveX 用于 IE,NPAPI 用于其他一切。
Yes, you can do this in all browsers. ActiveX for IE, and NPAPI for everything else.