What would be wrong with that?PHP Code:<?php
$image = imagecreatefrompng('http://img148.imageshack.us/img148/9800/slipknot4qj.png');
//$image = imagecreatefromjpeg('http://img148.imageshack.us/img148/9691/slipknot134832cv.jpg');
$red = imagecolorallocate($image, 255, 0, 0);
imagestring($image, 0, 0, 0, $_SERVER['REMOTE_ADDR'], $red);
header ("Content-type: image/png");
imagepng($image);
imagedestroy($image);
?>







Reply With Quote


