Firefox 可以显示 JP2 图像吗?

Val*_*ter 6 html css image file web

我最近将我网站上的每个图像都转换为 JP2,以减小文件大小,同时仍然具有透明度。

在 Safari 上一切正常,但 Firefox 不显示 JP2 图像,但它显示 PNG。

Firefox 不支持 JP2 吗?

Seb*_*sch 6

Firefox 不支持 JP2 图像

但是您可以使用该<picture>元素提供多种图像格式,以便浏览器可以选择并显示支持的图像格式:

<picture>
    <source srcset="img/example.jp2" type="image/jp2"> <!-- format supported by safari -->
    <source srcset="img/example.webp" type="image/webp"> <!-- format supported on many browsers -->
    <source srcset="img/example.jpg" type="image/jpeg"> <!-- common supported format -->
    <img src="img/example.jpg" alt="example-alt-text"> <!-- default -->
</picture>
Run Code Online (Sandbox Code Playgroud)

注意: JP2 格式的替代方案可以是 WebP 格式: