你好所以我要透明的圖片995x100px和1000頁的URL列表。 我想製作所有這些網址的圖片。 我知道如何做手工,但問題是我得到了1000個網址,所以我要生成 1000隨機座標,並把所有的URL內的飛行。隨機生成圖像映射與1000個網址
<?php
$urls = array("www.link1.com", "www.link2.com " , "www.link3.com","www.link4.com");
shuffle($urls); // randomize the urls
// start the image map
$map = <<<EOL
<img src="links.png" width="998" height="100" border="0" usemap="#mymap" />
<map name="mymap">
EOL;
$i = 0;
for ($y = 0; $y = $y + 10; $y < 100) {
for ($x = 0; $x = $x + 10; $x < 995) {
$bot_x = $x + 9;
$bot_y = $y + 9;
$map .= <<<EOL
<area shape="rect" coords="{$x},{$y},{$bot_x},{$bot_y}" href="{$urls[$i]}" />
EOL;
$i++;
}
}
$map .= <<<EOL
</map>
EOL;
echo $map;
?>
的每個網址都應該是影像地圖裏自己的小點擊多邊形? –
是的,你是對的:) – user990024