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
相關用法
- PHP pi( )用法及代碼示例
- PHP Ds\Map get()用法及代碼示例
- PHP Ds\Map put()用法及代碼示例
- p5.js nfp()用法及代碼示例
- d3.js d3.max()用法及代碼示例
- PHP Ds\Map xor()用法及代碼示例
- p5.js str()用法及代碼示例
- p5.js hex()用法及代碼示例
- p5.js hue()用法及代碼示例
- p5.js nfs()用法及代碼示例
- p5.js value()用法及代碼示例
- d3.js d3.set.has()用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | imagebmp() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。