由檔案或 URL 建立一個新圖像。

imagecreatefromgif

(PHP 4, PHP 5, PHP 7, PHP 8)

imagecreatefromgif由檔案或 URL 建立一個新圖像。

說明

imagecreatefromgif(string $filename): resource

imagecreatefromgif() 返回一影象識別符號,代表了從給定的檔名取得的影象。

小技巧

如已啟用fopen 包裝器,在此函式中, URL 可作為檔名。關於如何指定檔名詳見 fopen()。各種 wapper 的不同功能請參見 支援的協議和封裝協議,注意其用法及其可提供的預定義變數。

參數

filename

GIF 影象的路徑。

返回值

成功后返回圖像對像,失敗后返回 false

範例

示例 #1 處理建立過程中的錯誤

<?php
function LoadGif($imgname)
{
    
/* Attempt to open */
    
$im = @imagecreatefromgif($imgname);

    
/* See if it failed */
    
if(!$im)
    {
        
/* Create a blank image */
        
$im imagecreatetruecolor (15030);
        
$bgc imagecolorallocate ($im255255255);
        
$tc imagecolorallocate ($im000);

        
imagefilledrectangle ($im0015030$bgc);

        
/* Output an error message */
        
imagestring ($im155'Error loading ' $imgname$tc);
    }

    return 
$im;
}

header('Content-Type: image/gif');

$img LoadGif('bogus.image');

imagegif($img);
imagedestroy($img);
?>

以上例程的輸出類似於:

例子的輸出: 處理建立 GIF 過程中的錯誤

註釋

注意:

自 GD 庫 1.6 版起所有的 GIF 支援都移除了,又在 GD 庫 2.0.28 版起又加了回來。如果使用二者之間版本的 GD 庫時本函式不可用。

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *