fork download
  1. <?php
  2. $b = "1280";
  3. $str = "-638,-663,28 + 180,-60,50 + 838,-473,22 + 21,230,11 + 35,162,28 + 88,-33,22 + -346,632,22";
  4. $coords = explode("+", $str);
  5.  
  6. echo "<map id=\"imgmap20122911656\" name=\"imgmap20122911656\">\n";
  7.  
  8. foreach($coords as $coord)
  9. {
  10. list($x, $y, $r) = split(',', trim($coord));
  11.  
  12. $xx = $b+$x;
  13. $yy = $b-$y;
  14.  
  15. echo "<area shape=\"circle\" alt=\"\" title=\"\" coords=\"".$xx.",".$yy.",".$r."\" href=\"\" target=\"\" />\n";
  16.  
  17. }
  18.  
  19. echo "<!-- Created by Online Image Map Editor (http://w...content-available-to-author-only...k.hu/imagemap/index --></map>\n";
  20.  
  21. ?>
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
Success #stdin #stdout 0.02s 13112KB
stdin
1
2
10
42
11
stdout
<map id="imgmap20122911656" name="imgmap20122911656">
<area shape="circle" alt="" title="" coords="642,1943,28" href="" target="" />
<area shape="circle" alt="" title="" coords="1460,1340,50" href="" target="" />
<area shape="circle" alt="" title="" coords="2118,1753,22" href="" target="" />
<area shape="circle" alt="" title="" coords="1301,1050,11" href="" target="" />
<area shape="circle" alt="" title="" coords="1315,1118,28" href="" target="" />
<area shape="circle" alt="" title="" coords="1368,1313,22" href="" target="" />
<area shape="circle" alt="" title="" coords="934,648,22" href="" target="" />
<!-- Created by Online Image Map Editor (http://w...content-available-to-author-only...k.hu/imagemap/index --></map>