<?php
function CargarGif($imagen)
{
/* Intentar abrir */
$im = @imagecreatefromgif($imagen);
/* Ver si falló */
if(!$im)
{
/* Crear una imagen en blanco */
$im = imagecreatetruecolor (150, 30);
$fondo = imagecolorallocate ($im, 255, 255, 255);
$ct = imagecolorallocate ($im, 0, 0, 0);
imagefilledrectangle ($im, 0, 0, 150, 30, $fondo);
/* Imprimir un mensaje de error */
imagestring ($im, 1, 5, 5, 'Error cargando ' . $imagen, $ct);
}
return $im;
}
header('Content-Type: image/gif');
$img = CargarGif('falso.image');
imagegif($img);
imagedestroy($img);
?>
El resultado del ejemplo
sería algo similar a: