blob: fcee528d47e99e4f3bbc947ce0ad507f5c13d6fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<svg xmlns="http://www.w3.org/2000/svg">
<defs>
<pattern id="p2" width="8" height="8" patternUnits="userSpaceOnUse">
<rect x="-1" y="-1" width="10" height="10" fill="yellow"/>
<rect width="4" height="4"/>
<rect x="4" y="4" width="4" height="4"/>
</pattern>
<pattern id="p" width="200" height="200" patternUnits="userSpaceOnUse">
<g transform="translate(50,120)scale(4)">
<text style="font: bold 48px sans-serif; fill: url(#p2)">a</text>
</g>
</pattern>
</defs>
<rect width="200" height="200" fill="url(#p)" transform="scale(2)"/>
<g transform="scale(2)translate(50,120)scale(4)">
<text style="font: bold 48px sans-serif; fill: none; stroke: black; stroke-width: 1px">a</text>
</g>
</svg>
|