imagecolorsforindex()函數是PHP中的內置函數,用於獲取給定索引處的顏色。此函數返回一個數組,該數組包含用於指定顏色值的紅色,綠色,藍色和Alpha鍵值。
用法:
array imagecolorsforindex ( $image, $index )
參數:該函數接受上述和以下描述的兩個參數:
- $image:imagecreatetruecolor()函數用於創建給定尺寸的圖像。此函數創建給定尺寸的空白圖像。
- $index:此參數用於指定顏色索引。
返回值:此函數返回一個在給定索引處包含紅色,綠色,藍色和Alpha鍵值的關聯數組。
以下示例程序旨在說明PHP中的imagecolorsforindex()函數:
程序1:
<?php
// store the image in variable.
$image = imagecreatefrompng(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png');
// Calculate rgb pixel value at perticular point.
$rgb = imagecolorat($image, 30, 25);
// Assign color name and its value.
$colors = imagecolorsforindex($image, $rgb);
var_dump($colors);
?>
輸出:
array(4) { ["red"]=> int(34) ["green"]=> int(170) ["blue"]=> int(66) ["alpha"]=> int(0) }
程序2:
<?php
// store the image in variable.
$image = imagecreatefrompng(
'https://media.geeksforgeeks.org/wp-content/uploads/col1.png');
// index value
$index_x = 230;
$index_y = 120;
// Calculate rgb pixel value at perticular point.
$rgba_color = imagecolorat($image, $index_x, $index_y);
// Assign color name and its value.
$colors = imagecolorsforindex($image, $rgba_color);
var_dump($colors);
?>
輸出:
array(4) { ["red"]=> int(97) ["green"]=> int(57) ["blue"]=> int(104) ["alpha"]=> int(0) }
相關文章:
參考: http://php.net/manual/en/function.imagecolorsforindex.php
相關用法
- p5.js second()用法及代碼示例
- PHP pow( )用法及代碼示例
- p5.js sq()用法及代碼示例
- PHP next()用法及代碼示例
- d3.js d3.map.has()用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- CSS var()用法及代碼示例
- p5.js pow()用法及代碼示例
- p5.js day()用法及代碼示例
- PHP pi( )用法及代碼示例
- PHP Ds\Map get()用法及代碼示例
- PHP Ds\Map put()用法及代碼示例
注:本文由純淨天空篩選整理自Mahadev99大神的英文原創作品 PHP | imagecolorsforindex() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。