3. Vektorbasierende Grafiken |
3.1 SVG |
(Vector Markup Language) |
Qualitätsverlust |
Beispiel |
|
<?xml version="1.0"?> | |
<svg xmlns="http://www.w3.org/2000/svg"> |
|
<rect x="20" y="20" width="300" height="250" |
|
style="fill:none;stroke:blue;stroke-width:10"/> |
|
<g transform="translate(10, 90) "> |
|
<ellipse cx="160" cy="80" rx="70" ry="30" |
|
style="fill:none;stroke:purple;stroke-width:3"/> |
|
</g> |
|
</svg> |
|
Weiter |