用于识别自定义图像格式的浏览器插件

发布于 2024-11-25 06:06:52 字数 293 浏览 3 评论 0原文

我有自定义文件格式的图像(基本上包含 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

大姐,你呐 2024-12-02 06:06:52

您可以使用 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.

简单气质女生网名 2024-12-02 06:06:52

是的,您可以在所有浏览器中执行此操作。 ActiveX 用于 IE,NPAPI 用于其他一切。

Yes, you can do this in all browsers. ActiveX for IE, and NPAPI for everything else.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文