<?php function LoadPNG($imgname) {   $im = @imagecreatefrompng($imgname); /* Tentative d'ouverture */   if (!$im) { /* Vérification */     $im = imagecreate(150, 30); /* Création d'une image blanche */         $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 de chargement de l'image $imgname", $tc);     }     return $im; } ?>
 
 |