PHP 地图区域图片 (狂想区)

<?php
//+.- ---and all
$OD='ipd';
$newwidth = 80;
$newheight = 80;
$bmiparea =
$files=array(); 
if ($handle=opendir("$OD")){
    
while(false !== ($file = readdir($handle))) {
        
if ($file != "." && $file != "..") {
            
if(substr($file,-3)=='png')
                
$files[count($files)] = $file;
            }
        }
    }
closedir($handle);
$random = rand(0,count($files)-1);
$im = imagecreate ( 155, 138 );
//imagefilledrectangle ( $im, 0, 0, 255, 255, 0);
$source = imagecreatefrompng('ipd/'.$files[$random]);
list($oldwidth, $oldheight= getimagesize('ipd/'.$files[$random]);
$bg = imagecolorallocate($im, 255, 255, 255);
$textcolor = imagecolorallocate($im, 0, 0, 0);
imagecopyresized(
$im,$source,30,35,0,0,$newwidth,$newheight,$oldwidth,$oldheight);
//imagerectangle($im,30,20,120,98,$file);
$NM = 'Dosnake@Gmail.com';
$by = 'YOUR IP REGION:';
$IP = $_SERVER['REMOTE_ADDR'];
imagestring(
$im, 5, 0.2, 0, "$NM", $textcolor);
imagestring(
$im, 4, 13, 15, "$by", $textcolor);   
imagestring(
$im, 4, 5, 123, "IP:$IP", $textcolor);
header("Content-type: image/png");
imagepng(
$im);
imagedestroy(
$im);
?>    

//0x001  一个根据IP显示图片的框架
//0x002     程序很easy,没遇到什么问题
//0x003  主要是在覆盖方面的顺序一直没有掌握好。
//0x004  继续完善中...  存档

posted @ 2008-05-17 16:35  090  阅读(939)  评论(1编辑  收藏  举报
如有任何的意见和建议,请 E-mail 至 to090@yahoo.com
建议使用 IE 6.0 或 FireFox 2.0 以上版本进行浏览,最佳显示 1024 * 768