谁能把他下列代码翻译成ASP啊???
<?php
header ("Content-type: image/png");
$IP=$_SERVER[REMOTE_ADDR];
$image = ImageCreate(200,80);
$colorbk=ImageColorAllocate($image,58,110,165);
$colorGreen=ImageColorAllocate($image,255,128,64);
$colorB=ImageColorAllocate($image,255,255,255);
$colorBlack=ImageColorAllocate($image,0,0,0);
$colorBb=ImageColorAllocate($image,192,192,192);
ImageFill($image,0,0,$colorbk);
ImageFilledRectangle($image,5,5,195,75,$colorBb);
ImageFilledRectangle($image,7,7,193,73,$colorB);
ImageString($image,7,23,15,$IP,$colorBlack);
ImagePNG($image);
?>
需要PHP的GD库支持