當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP imagecreatefromwbmp()用法及代碼示例


imagecreatefromwbmp()函數是PHP中的內置函數,用於從WBMP文件或URL創建新圖像。 WBMP(無線應用協議位圖格式)是為移動計算設備優化的單色圖形文件格式。可以在程序中進一步處理此加載的圖像。從WBMP文件加載圖像後要編輯圖像時,通常使用此函數。可以使用imagewbmp()函數將圖像轉換為WBMP。

用法:

resource imagecreatefromwbmp( string $filename )

參數:該函數接受單個參數$filename,該參數保存圖像的名稱。


返回值:成功時此函數返回圖像資源標識符,錯誤時返回FALSE。

以下示例說明了PHP中的imagecreatefromwbmp()函數:

範例1:

<?php 
  
// Load an WBMP image from local folder 
// You can convert any image to WBMP using 
// imagewbmp() function or online convertors 
$im = imagecreatefromwbmp('./geeksforgeeks.wbmp'); 
  
// View the loaded image in browser 
imagewbmp($im); 
imagedestroy($im); 
?>

輸出:

This will load the content into browser in the form 
of unsupported text as browsers don't support WBMP.

範例2:

<?php 
  
// Load an WBMP image from local folder 
// You can convert any image to WBMP using 
// imagewbmp() function or online convertors 
$im = imagecreatefromwbmp('./geeksforgeeks.wbmp'); 
  
// Output the image by converting it into PNG 
header('Content-type:image/png'); 
imagepng($im); 
imagedestroy($im); 
?>

輸出:

參考: https://www.php.net/manual/en/function.imagecreatefromwbmp.php



相關用法


注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | imagecreatefromwbmp() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。