imagecolorallocate()函數是PHP中的內置函數,用於設置圖像的顏色。此函數返回以RGB格式給出的顏色。
用法:
int imagecolorallocate ( $image, $red, $green, $blue )
參數:該函數接受上述和以下所述的四個參數:
- $image:它由圖像創建函數之一(例如imagecreatetruecolor())返回。它用於創建圖像的尺寸。
- $red:此參數用於設置紅色分量的值。
- $green:此參數用於設置綠色分量的值。
- $blue:此參數用於設置藍色分量的值。
返回值:如果顏色分配失敗,則此函數返回成功的顏色標識符或FALSE。
以下示例程序旨在說明PHP中的imagecolorallocate()函數。
程序1:
<?php
// It create the size of image or blank image.
$image_size = imagecreatetruecolor(500, 300);
// Set the background color of image using
// imagecolorallocate() function.
$bg = imagecolorallocate($image_size, 0, 103, 0);
// Fill background with above selected color.
imagefill($image_size, 0, 0, $bg);
// output image in the browser
header("Content-type: image/png");
imagepng($image_size);
// free memory
imagedestroy($image_size);
?>
輸出:
程序2:
<?php
// It create the size of image or blank image.
$image_size = imagecreatetruecolor(500, 300);
// Set the background color of image.
$bg = imagecolorallocate($image_size, 0, 103, 0);
// Fill background with above selected color.
imagefill($image_size, 0, 0, $bg);
// Set the colors of image
$white_color = imagecolorallocate($image_size, 255, 255, 255);
// Draw a circle
imagearc($image_size, 200, 150, 200, 200, 0, 360, $white_color);
// output image in the browser
header("Content-type: image/png");
imagepng($image_size);
// free memory
imagedestroy($image_size);
?>
輸出:
相關文章:
參考: http://php.net/manual/en/function.imagecolorallocate.php
相關用法
- p5.js nfp()用法及代碼示例
- p5.js nfs()用法及代碼示例
- d3.js d3.hcl()用法及代碼示例
- PHP sin( )用法及代碼示例
- p5.js nfc()用法及代碼示例
- PHP tan( )用法及代碼示例
- PHP cos( )用法及代碼示例
- p5.js nf()用法及代碼示例
- PHP pow( )用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- PHP next()用法及代碼示例
- d3.js d3.set.has()用法及代碼示例
注:本文由純淨天空篩選整理自Mahadev99大神的英文原創作品 PHP | imagecolorallocate() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。