使用 SVG 剪切圆形图像
在尝试使用 SVG 路径剪切图像的圆形部分时,遇到了未对齐的情况。为了达到您想要的结果,使用 SVG 的替代方法提供了更简单的解决方案。
以下是代码:
<svg width="200" height="200"> <defs> <mask id="hole"> <circle r="100" cx="100" cy="100" fill="white"/> <circle r="50" cx="180" cy="180" fill="black"/> </mask> <pattern id="img" patternUnits="userSpaceOnUse" width="200" height="200"> <image xlink:href="https://picsum.photos/200/200?image=1069" x="0" y="0" width="200" height="200" /> </pattern> </defs> <!-- create a rect, fill it with the image and apply the above mask --> <rect fill="url(#img)" width="100%" height="100%" mask="url(#hole)" /> </svg>
此 SVG 方法涉及创建带有圆孔和图案的遮罩与图像。然后用图像图案填充矩形并用孔遮盖。这会导致 SVG 容器内的图像出现圆形切口。
以上是如何使用 SVG 路径剪切圆形图像部分:综合指南的详细内容。更多信息请关注PHP中文网其他相关文章!