Why i can not use getimagesize PHP with this image ?
For this image i can get getimagesize PHP, work good.
<?PHP
$source = "https://i.pinimg.com/736x/da/7a/19/da7a19a0c3daabe579ecca21d1ae32c3--felt-wool-felting-projects.jpg";
$dimension = getimagesize($source);
$width = $dimension[0];
$height = $dimension[1];
echo $width;
echo "<BR>";
echo $height;
?>
But for this image Why i can not get getimagesize PHP ?
<?PHP
$source = "https://shorebread.com/wp-content/uploads/2016/07/kitty-cat-reaching_138482216-2000x500.jpg";
$dimension = getimagesize($source);
$width = $dimension[0];
$height = $dimension[1];
echo $width;
echo "<BR>";
echo $height;
?>
How can i do for use getimagesize PHP on every image ?