沐风白桦

大圣休得胡闹

Convert SWF vector shape to SVG image

| Comments

Display SVG in HTML: #1
1
<img src="/assets/swf-svg/graph-01.svg"></img>
Display SVG in HTML: #2
1
2
<embed src="/assets/swf-svg/graph-01.svg" width="300" height="100" type="image/svg+xml"
    pluginspage="http://www.adobe.com/svg/viewer/install/" />
Display SVG in HTML: #3
1
2
<object data="/assets/swf-svg/graph-01.svg" width="300" height="100" type="image/svg+xml"
    codebase="http://www.adobe.com/svg/viewer/install/" />
Display SVG in HTML: #4
1
<iframe src="/assets/swf-svg/graph-01.svg" width="300" height="100"></iframe>
Display SVG in HTML: #5
1
2
3
4
5
6
7
8
<html>
    <body>
        <svg width="300" height="100" version="1.1" >
            <circle cx="100" cy="50" r="40" stroke="black" stroke-width="2" fill="red" />
            Sorry, your browser does not support inline SVG.
        </svg>
    </body>
</html>

Comments