https://www.php.net/manual/tr/function.getimagesize.php

<?php
list($width, $height, $type, $attr) = getimagesize("img/flag.jpg");
echo $width .  ' - ' .  $height;
?>