gpt4 book ai didi

svg - 当我指定 1px 时,为什么我的 SVG 线条模糊或高度为 2px?

转载 作者:行者123 更新时间:2023-12-04 01:44:07 25 4
gpt4 key购买 nike

我正在用 SVG 创建一条线,它在我的网页中显得模糊。更清楚一点,它看起来比笔画宽度大 1px。为什么会发生这种情况,有没有办法在 SVG 中修复它?

这是代码。当我自己运行这段代码时,它并不模糊。当它在我的网页中时,这条线的高度似乎是 2px 而不是 1px。

#HorizontalLine1178  {
stroke:rgb(154,154,154);
stroke-width:1;
}
<svg style="width:100%;">
<line id="HorizontalLine1178" y2="97" y1="97" x2="100%" x1="62" >
</svg>

最佳答案

因为当它的 Y 坐标位于整个像素时,1px中风在它周围,因此“抗锯齿”(参见 Paul LeBeau 的 excellent illustration)。在这种情况下使用半像素坐标,或应用 shape-rendering="crispEdges" 这将为您进行像素舍入,但即使在圆形对象上也会产生锐利的边缘:

<svg style="width:100%; background-color: white" stroke="black" fill="white" stroke-width="1">
<line y2="10.0" y1="10.0" x2="90%" x1="10">
<title>.0</title>
</line>
<line y2="15.5" y1="15.5" x2="90%" x1="10">
<title>.5</title>
</line>
<line y2="20.0" y1="20.0" x2="90%" x1="10" shape-rendering="crispEdges">
<title>.0 + crispEdges</title>
</line>

<circle cy="50" cx="20" r="10">
<title>.0</title>
</circle>
<circle cy="49.5" cx="44.5" r="10">
<title>.5</title>
</circle>
<circle cy="50" cx="70" r="10" shape-rendering="crispEdges">
<title>.0 + crispEdges</title>
</circle>

<rect x="90" y="40" width="20" height="20">
<title>.0</title>
</rect>
<rect x="120" y="40" width="20" height="20" shape-rendering="crispEdges">
<title>.0 + crispEdges</title>
</rect>
<rect x="149.5" y="39.5" width="20" height="20">
<title>.5</title>
</rect>

<rect x="190" y="40" width="20" height="20" stroke="none" fill="black">
<title>.0 + fill, no stroke</title>
</rect>
<rect x="219.5" y="39.5" width="20" height="20" stroke="none" fill="black">
<title>.5 + fill, no stroke</title>
</rect>
</svg>

关于svg - 当我指定 1px 时,为什么我的 SVG 线条模糊或高度为 2px?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34229483/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com