Prezantim me SVG
<?php
header("Content-type: image/svg+xml");
echo '<?xml version="1.0" standalone="no"?>';
echo '<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN"
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">';
echo
'<svg xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
width="300px" height="300px">';
echo "
<title>Small SVG example</title>
<circle id='rrethi' cx='120' cy='150' r='60' fill='#F0F0F0'>
<animate attributeName='r' from='2' to='80' begin='0'
dur='3' repeatCount='indefinite' /></circle>
<rect x='19' y='37' fill='#52B848' stroke='#000000' stroke-miterlimit='10' width='80' height='59' id='greenBlock' />
<polyline points='120 30, 25 150, 290 150' id='vije'
stroke-width='4' stroke='brown' fill='none' />
<polygon points='210 100, 210 200, 270 150' id='pol'
fill='green' />
<text id='mesazh' x='60' y='250' fill='blue'>Hello, World!</text>
</svg> ";
?>