2008-09-20 18 views

Respuesta

16

imagesx() y imagesy() funciones parecen funcionar con imágenes hechas con imagecreatefromstring(), también.

7

ah sí! acabo de encontrar la respuesta en Internet hace un segundo :)

para aquellos que todavía está interesado:

$image = imagecreatefromstring($img_str); 
$w = imagesx($image); 
$h = imagesy($image); 
Cuestiones relacionadas