Google Chrome无法显示.eps文件

时间:2018-12-04 12:14:31

标签: html google-chrome eps

我要添加“在App Store上下载”徽章。我下载的文件是.eps文件,可以在Safari中正确显示,但不能在Chrome中正确显示。

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8" />
    <title>Page Title</title>
</head>
<body>
    <a href="https://linktoitunes">
        <img class="appstore" alt="Download on the App Store" src="../appstore-badge.eps" /></a>
</body>
</html>

1 个答案:

答案 0 :(得分:1)

将图像转换为WWW上更常用的格式。

如果要继续使用矢量格式,请使用SVG。否则,对于像照片一样的图像,使用JPEG格式;对于要精确复制原始图像的图像,则使用PNG图像。