Firefox可以显示JP2图像吗?

时间:2019-03-04 09:42:09

标签: html css image file web

我最近将网站上的每张图片都转换为JP2,以减小文件大小并保持透明。

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

Firefox不支持JP2吗?

2 个答案:

答案 0 :(得分:1)

JP2 images are not supported on Firefox

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

注意:JPP格式的替代方法可以是WebP格式:

答案 1 :(得分:1)

(JP2)以下受支持的浏览器:

Firefox:不支持。

Chrome浏览器:不支持。

Safari:受支持。

您还可以检查以下链接: https://caniuse.com/#feat=jpeg2000