使用SVG模式可以解決您的問題。
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
width="200" height="200">
<defs>
<pattern id="image" x="0" y="0" patternUnits="userSpaceOnUse" height="200" width="200">
<image x="0" y="0" width="200" height="200"
xlink:href="http://cdn.sstatic.net/stackexchange/img/logos/so/so-logo.png"/>
</pattern>
</defs>
<rect width="200" height="200" fill="url(#image)"/>
<circle cx="100" cy="100" r="50"/>
</svg>
小提琴可用here。
我通過蠟染光柵將上面的SVG拉出來,並且它被正確地光柵化了。
更新
正如在評論中指出,你也可以同樣直接在影像中包含的SVG,不使用模式。
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
width="200" height="200">
<image x="0" y="0" width="200" height="200"
xlink:href="http://cdn.sstatic.net/stackexchange/img/logos/so/so-logo.png"/>
<circle cx="100" cy="100" r="50"/>
</svg>
小提琴可用here。
爲什麼你認爲一個模式是必要的?爲什麼不直接使用''標籤包含圖像? –
@RobertLongson這會更簡單,並且應該同樣適用。感謝您的評論,我會更新我的答案。 –
完美!非常感謝! – qba