Hello,
i'm find one bug here http://cvs.horde.org/co.php/horde/lib/Image/svg.php
function arc() contain error on this string
$path .= "A $r,$r 0 0 1 "
need update to
$largeArcFlag = 0;
if ($end - $start > 180) {
$largeArcFlag = 1;
}
$path .= "A $r,$r 0 $largeArcFlag 1 "