<?php function LoadGif ($imgname) { $im = @imagecreatefromgif ($imgname); /* Tentative d'ouverture */ if (!$im) { /* Test d'échec */ $im = imagecreatetruecolor (150, 30); /* Création d'une image vide */ $bgc = imagecolorallocate ($im, 255, 255, 255); $tc = imagecolorallocate ($im, 0, 0, 0); imagefilledrectangle ($im, 0, 0, 150, 30, $bgc); /* Affichage d'un message d'erreur */ imagestring ($im, 1, 5, 5, "Erreur au chargement de l'image $imgname", $tc); } return $im; } ?>
|