
12/10/2009, 19:26
|
 | | | Fecha de Ingreso: octubre-2009
Mensajes: 752
Antigüedad: 15 años, 5 meses Puntos: 22 | |
Respuesta: ¿Como hago que una imagen muestra la ip? Esto pero en asp
<?php
header("Content-type: image/png");
$fondo = "amigo.png";
$imagen = imagecreatefrompng("$fondo");
$fuente = "fuente.ttf";
$color = imagecolorallocate($imagen,0,0,0);
$texto = $_SERVER['remote_addr'];
imagettftext($imagen,15,0023,$color,$fuente, $texto);
imagepng($imagen);
?> |