Tutorial Get Width/Height of Image
If all you have for an image is the URL, you can still find the dimensions: list($width, $height, $type, $attr) = getimagesize("url/t...
https://iskablogs.blogspot.com/2014/03/tutorial-get-widthheight-of-image.html
If all you have for an image is the URL, you can still find the dimensions:
list($width, $height, $type, $attr) = getimagesize("url/to/image.jpg");
echo "Image width " . $width;
echo "Image height " . $height;
echo "Image type " . $type;
echo "Attribute " . $attr;
?>
Reference URL
list($width, $height, $type, $attr) = getimagesize("url/to/image.jpg");
echo "Image width " . $width;
echo "Image height " . $height;
echo "Image type " . $type;
echo "Attribute " . $attr;
?>
Reference URL