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.
作業中の SVG 画像の塗りつぶしとして使用できるパターンを生成したい画像 (jpg および 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)" />