function LoadWBMP ($imgname) {
$im = @imagecreatefromwbmp ($imgname); /* попытка открыть */
if (!$im) { /* проверить, удачно ли */
$im = imagecreate (20, 20); /* создать пустое изображение */
$bgc = imagecolorallocate ($im, 255, 255, 255);
$tc = imagecolorallocate ($im, 0, 0, 0);
imagefilledrectangle ($im, 0, 0, 10, 10, $bgc);
/* вывести errmsg */
imagestring ($im, 1, 5, 5, "Error loading $imgname", $tc);
}
return $im;
} |