SVG 文本路径在 Ubuntu 20.04 LTS 上不起作用

SVG 文本路径在 Ubuntu 20.04 LTS 上不起作用

尝试沿路径放置文本。示例来自网络,但在我的机器上失败:

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000">
    <g>
        <rect style="fill:white;fill-opacity:1;stroke:none;stroke-width:0;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" width="1000" height="1000" />

        <path id="Geek" fill="yellow" stroke="green" d="M100 900 Q900 900 900 450 Q900 100 500 100 Q100 
                  100 100 400 Q100 700 450 700 Q700 700 750 500" />

        <text>
            <textPath href="#Geek">The Geeky Text Along The Path</textPath>
        </text>
    </g>
</svg>

显示路径但没有文本。

答案1

我几乎疯了一样试图修复这个问题,然后就遇到了这个问题。我不敢相信一年后它还没有修复……基本上今天(2022 年 2 月 18 日)GIMP 和 Image Viewer 都不会显示 textPath,只需使用浏览器直到它修复,我尝试使用 Firefox,您可以正常看到文本。

相关内容