“GetImagesize PHP” Código de respuesta

GetImagesize PHP


<?php
list($width, $height, $type, $attr) = getimagesize("img/flag.jpg");
echo "<img src=\"img/flag.jpg\" $attr alt=\"getimagesize() example\" />";
?>

Uninterested Unicorn

GetImagesize PHP


<?php
$size = getimagesize("http://www.example.com/gifs/logo.gif");

// if the file name has space in it, encode it properly
$size = getimagesize("http://www.example.com/gifs/lo%20go.gif");

?>

Uninterested Unicorn

Respuestas similares a “GetImagesize PHP”

Preguntas similares a “GetImagesize PHP”

Más respuestas relacionadas con “GetImagesize PHP” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código