(PHP 4, PHP 5, PHP 7, PHP 8)
imagecreatefromgif — 由文件或 URL 創(chuàng)建一個(gè)新圖象。
$filename
): resourceimagecreatefromgif() 返回一圖像標(biāo)識(shí)符,代表了從給定的文件名取得的圖像。
如已啟用fopen 包裝器,在此函數(shù)中, URL 可作為文件名。關(guān)于如何指定文件名詳見 fopen()。各種 wapper 的不同功能請(qǐng)參見 支持的協(xié)議和封裝協(xié)議,注意其用法及其可提供的預(yù)定義變量。
filename
GIF 圖像的路徑。
成功后返回圖象對(duì)象,失敗后返回 false
。
示例 #1 處理創(chuàng)建過程中的錯(cuò)誤
<?php
function LoadGif($imgname)
{
/* Attempt to open */
$im = @imagecreatefromgif($imgname);
/* See if it failed */
if(!$im)
{
/* Create a blank image */
$im = imagecreatetruecolor (150, 30);
$bgc = imagecolorallocate ($im, 255, 255, 255);
$tc = imagecolorallocate ($im, 0, 0, 0);
imagefilledrectangle ($im, 0, 0, 150, 30, $bgc);
/* Output an error message */
imagestring ($im, 1, 5, 5, 'Error loading ' . $imgname, $tc);
}
return $im;
}
header('Content-Type: image/gif');
$img = LoadGif('bogus.image');
imagegif($img);
imagedestroy($img);
?>
以上例程的輸出類似于:
注意:
自 GD 庫 1.6 版起所有的 GIF 支持都移除了,又在 GD 庫 2.0.28 版起又加了回來。如果使用二者之間版本的 GD 庫時(shí)本函數(shù)不可用。