簡介,php版本要求,函式說明,使用範例,
簡介
imagecreatefromgif -- 從 GIF 檔案或 URL 新建一圖像
php版本要求
(PHP 3, PHP 4, PHP 5)
函式說明
resource imagecreatefromgif ( string filename )
imagecreatefromgif() 返回一圖像標識符,代表了從給定的檔案名稱取得的圖像。
使用範例
例子 1. 處理創建過程中的錯誤
<?php
function LoadGif($imgname)
{
$im = @imagecreatefromgif($imgname); /* Attempt to open */
if(!$im) { /* See if it failed */
$im = imagecreatetruecolor(150, 30); /* Create a blank image */
$bgc = imagecolorallocate($im, 255, 255, 255);
$tc = imagecolorallocate($im, 0, 0, 0);
imagefilledrectangle($im, 0, 0, 150, 30, $bgc);
/* Output an errmsg */
imagestring($im, 1, 5, 5, "Error loading $imgname", $tc);
}
return $im;
}
?>