2
我正在生成以下SVG內重複的圖像:一個SVG-面膜
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:ev="http://www.w3.org/2001/xml-events" version="1.1">
<defs>
<text id="txt1" y="100" font-weight="bold" font-family="Verdana" font-size="100" fill="white">Some Text</text>
<image id="img1" x="0" y="0" width="425" height="319" opacity="1" xlink:href="http://designm.ag/images/0709/wood/71.jpg" />
</defs>
<g id="group1" transform="translate(0 0) rotate(0)" opacity="1">
<defs>
<mask id="mask1" x="0%" y="0%" width="100%" height="100%" maskUnits="objectBoundingBox">
<use x="0" y="0" width="1000" height="400" transform="rotate(0)" opacity="1" xlink:href="#txt1" />
</mask>
</defs>
<g mask="url(#mask1)" opacity="1">
<use x="0" y="0" width="1000" height="400" transform="rotate(0) scale(1)" opacity="1" xlink:href="#img1" />
</g>
</g>
</svg>
(Preview)
我已經縮短了SVG,我知道有兩個defs
-blocks ,但那是我正在開發的應用程序完成的生成過程的結果。
問題是文字不完全可見,因爲圖像寬度僅爲425px。有一種簡單的方法(例如,屬性),以重複圖像,即用於掩模?
隨着scale
大於1,文本將可見,但圖像將被拉伸,這不是我想要的。