I made some changes and implementation to the code of Gerhard Dinhof.
The PHP function generate an image map of the provided svg coord. You can specify a factor number that resize the area and x-y translation numbers to align the map to your image.
<?php
/**
* $str SVG coordinates string
* $factor number that multiply every coordinate (0-1)
* $x translation on the x-axis
* $y translation on the y-axis
*/
function svg2imap($str, $factor=1, $x=0, $y=0) {
$res = "";
$str = str_replace(array(" M ","M ", " C "," z "," z"),array("M","M","C","",""), $str);
$polygons = explode("M", $str);
for($i=0; $i<count($polygons); $i++) {
if($polygons[$i]!="") {
$res .= "<area shape=\"poly\" coords=\"";
$coordinates = explode("C", $polygons[$i]);
foreach( $coordinates as $position ) {
$noise = explode(" ", trim($position));
$point = explode(",", $noise[0]);
for($j=0; $j<2; $j++) {
$val = round( $point[$j]*$factor, 0);
if($j==0)
$res .= ($val + $x).",";
else
$res .= ($val + $y).",";
}
}
$res .= "\" href=\"link.html\" alt=\"desc\" />";
}
}
return $res = str_replace(",\"","\"", $res);;
}
?>
<?php
$svg = "M 6247.5037,5935.0511 C 6246.0707,5940.7838 6247.5037,5947.9495 C 6243.2043,5959.4149 z";
highlight_string( svg2imap($svg, $factor=0.33, $x=0, $y=0) );
?>