SVG – Learning by Coding
1:
<?xml version="1.0" encoding="ISO-8859-1" standalone="no"?>
2:
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN"
3:
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd" [
4:
<!ATTLIST svg xmlns:xlink CDATA #FIXED "http://www.w3.org/1999/xlink">
5:
]>
6: 7:
<!-- SVG - Learning by Coding - http://www.datenverdrahten.de/svglbc/ -->
8:
<!-- Author: Dr. Thomas Meinike 06/04 - thomas@handmadecode.de -->
9: 10:
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
11: 12:
<defs>
13: 14:
<filter id="tile" filterUnits="userSpaceOnUse">
15:
<feImage xlink:href="bilder/bild1.jpg"
16:
x="19" y="69" width="50" height="30" result="img"/>
17:
<feTile x="20" y="70" width="350" height="210" in="img"/>
18:
</filter>
19: 20:
</defs>
21: 22:
<title>SVG - Learning by Coding</title>
23:
<desc>SVG-Spezifikation in Beispielen</desc>
24:
<text x="20" y="30" style="fill: #000; font-size: 24px">
25:
Filter-Element feTile</text>
26: 27:
<rect x="20" y="70" width="350" height="210"
28:
style="opacity: 0.8; filter: url(#tile)"/>
29: 30:
</svg>
[zum Anfang]