Ver Mensaje Individual
  #3 (permalink)  
Antiguo 24/04/2014, 10:57
Avatar de Drewermerc
Drewermerc
 
Fecha de Ingreso: febrero-2014
Mensajes: 185
Antigüedad: 10 años, 2 meses
Puntos: 5
Respuesta: problema con imagecreatefrompng

hola bouinho.
fijate si de esta forma si te funciona el codigo:
<?php
header('Content-type: image/png');
$img = imagecreatefrompng('C:/wamp/www/grafico.png');
imagepng($img);
imagedestroy($img);
?>