Difference between revisions of "SVG"

From Dietrich Blog (Strato)
Jump to: navigation, search
(Replaced content with "Has been moved to: http://blog.kr8.de/wiki-svg/")
 
(54 intermediate revisions by 3 users not shown)
Line 1: Line 1:
== SVG Scalable Vector Grafics ==
+
Has been moved to: http://blog.kr8.de/wiki-svg/
* SVG ist ein auf [[XML]] beruhender W3C-Standard für [[VektorGrafik]].
 
* SVG wird/wurde sehr stark von der Firma Adobe unterstützt.
 
* SVG hat als offenes; d.h.nicht-proprietäres Format große Unterstützung von der [[OpenSourceSoftware]] 
 
* SVG wird von [[MediaWiki]] unterstützt
 
* Konkurriered zu SVG ist: '''Flash''' von Macromedia
 
 
 
== SVG Beispiele ==
 
<pre>
 
<?xml version="1.0" standalone="no"?>
 
<svg width="260" height="60">
 
    <rect x="5" y="5" style="fill:red; stroke-width:3; stroke:black;" width="250" height="50"/>
 
<rect x="10" y="10" style="fill:blue;" width="240" height="40"/>
 
<text x="40" y="40" style="fill:gold; font-size:20pt">
 
Hello World!
 
</text>
 
<circle style="fill:red;" cx="210" cy="30" r="10" />
 
</svg>
 
</pre>
 

Latest revision as of 22:29, 15 May 2020

Has been moved to: http://blog.kr8.de/wiki-svg/