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