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


PHP imagecreatefromxbm()用法及代碼示例


imagecreatefromxbm()函數是PHP中的內置函數,用於從XBM文件或URL創建新圖像。 XBM文件擴展名是用於圖形UI係統的X位圖圖形文件。可以在程序中進一步處理此加載的圖像。從XBM文件加載圖像後要編輯圖像時,通常使用此函數。可以使用imagexbm()函數將圖像轉換為XBM。

用法:

resource imagecreatefromxbm( string $filename )

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


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

下麵給出的程序說明了PHP中的imagecreatefromxbm()函數:程序1:

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

輸出:

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

程序2:

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

輸出:

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



相關用法


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