imagecreatefromwbmp

(PHP 4 >= 4.0.1, PHP 5, PHP 7, PHP 8)

imagecreatefromwbmp由文件或 URL 創(chuàng)建一個新圖象。

說明

imagecreatefromwbmp(string $filename): resource

imagecreatefromwbmp() 返回一圖像標識符,代表了從給定的文件名取得的圖像。

小技巧

如已啟用fopen 包裝器,在此函數(shù)中, URL 可作為文件名。關(guān)于如何指定文件名詳見 fopen()。各種 wapper 的不同功能請參見 支持的協(xié)議和封裝協(xié)議,注意其用法及其可提供的預(yù)定義變量。

參數(shù)

filename

WBMP 圖像的路徑。

返回值

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

范例

示例 #1 處理創(chuàng)建 WBMP 過程中的錯誤

<?php
function LoadWBMP($imgname)
{
    
/* Attempt to open */
    
$im = @imagecreatefromwbmp($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/vnd.wap.wbmp');

$img LoadWBMP('bogus.image');

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

注釋