Hello,
Are you able to handle HEIC images on shared hosting?
I ran the following test:
$file = __DIR__ . '/heic1.heic';
if (!file_exists($file)) {
echo "Fichier introuvable : $file";
} else {
$result = getimagesize($file);
echo "getimagesize() : ";
var_dump($result);
}
And I get:
getimagesize() : bool(false)
Thank you for your help.