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


PHP imagebmp()用法及代碼示例


imagebmp()函數是PHP中的內置函數,用於返回輸出或保存給定圖像的BMP版本。

用法:

bool imagebmp( resource $image, mixed $to, bool $compressed )

參數:此函數接受上述和以下所述的三個參數:


  • $image:它指定要轉換的圖像。
  • $to (Optional):它指定保存文件的路徑。
  • $compressed (Optional):它指定是否應使用run-length編碼壓縮BMP。

返回值:成功時此函數返回TRUE。

異常:該函數在出錯時引發Exception。

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

程序1(從頭開始創建bmp圖像):

<?php 
  
// Create a blank image 
$im = imagecreatetruecolor(120, 100); 
  
// Add text in image 
$text_color = imagecolorallocate($im, 200, 240, 21); 
imagestring($im, 1, 5, 50,  'GeeksforGeeks', $text_color); 
  
// Output that image as bmp 
header("Content-Type:image/bmp"); 
imagebmp($im); 
?>

輸出:

程序2(將圖像轉換為bmp):

<?php 
  
// Create a image from URL 
$im = imagecreatefrompng( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
// Output that image as bmp 
header("Content-Type:image/bmp"); 
imagebmp($im); 
?>

輸出:

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



相關用法


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