Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个图像(jpg 和 svg 格式),我想生成一个可以用作我正在处理的 SVG 图像的填充的图案。有没有什么工具或技术可以做到这一点?
当然,只需将图像(jpg 或 svg)放在一个模式中。
<defs> <pattern id="image1" width="100%" height="100%"> <image xlink:href="image.jpg" width="100" height="100" /> </pattern> </defs>
然后你可以像这样使用它作为填充属性:fill="url(#image1)" />