imagecreatefromgif

簡介,php版本要求,函式說明,使用範例,

簡介

imagecreatefromgif -- 從 GIF 檔案或 URL 新建一圖像

php版本要求

(PHP 3, PHP 4, PHP 5)

函式說明

resource imagecreatefromgif ( string filename )
imagecreatefromgif() 返回一圖像標識符,代表了從給定的檔案名稱取得的圖像。
imagecreatefromgif() 在失敗時返回一個空字元串,並且輸出一條錯誤信息,不幸地在瀏覽器中顯示為斷連結。為減輕調試工作下面的例子會產生一個錯誤 GIF:

使用範例

例子 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;
}
?>

相關詞條

熱門詞條

聯絡我們