Ver Mensaje Individual
  #4 (permalink)  
Antiguo 06/02/2013, 17:58
kies89
 
Fecha de Ingreso: septiembre-2012
Ubicación: Madrid
Mensajes: 89
Antigüedad: 11 años, 7 meses
Puntos: 1
De acuerdo Respuesta: Extraña imagen imagecreatePNG

Muchísimas gracias jje :).


Código final:
Código PHP:
Ver original
  1. <?php
  2.   $archivo = "http://2.bp.blogspot.com/_Zuzii37VUO4/SdSQklhdvBI/AAAAAAAAEQU/-K-OReo6lig/s1600/www-btemplates-com.png";
  3.   header("Content-type: image/png");
  4.   header("Pragma: no-cache");
  5.   imagepng($archivo);
  6.   ob_clean(); // Lo usamos porque flush(); lo requiere
  7.   flush(); // Vaciar buffer (mostrar datos al usuario)
  8.   readfile($archivo); // Leer archivo
  9. ?>