##imagecolorat() 函數取得像素顏色的索引。
語法
imagecolorat( $img, $x, $y )
登入後複製
參數
### img###:使用imagecreatetruecolor() 函數建立影像。###############x###:點的x 座標。############################################################################################################################################# #y:### 點的y 座標。############ 傳回######imagecolorat() 函數失敗時傳回顏色索引或FALSE。######範例# #####以下是範例:###### Live Demo###
<?php
$img = imagecreatefrompng("http://www.tutorialspoint.com/images/tp-logo-diamond.png");
$rgb = imagecolorat($img, 15, 25);
$colors = imagecolorsforindex($img, $rgb);
var_dump($colors);
?>
登入後複製
### 輸出######以下是輸出結果:###
array(4) { ["red"]=> int(255) ["green"]=> int(255) ["blue"]=> int(255) ["alpha"]=> int(127) }
登入後複製
###
以上是在PHP中的imagecolorat()函數的詳細內容。更多資訊請關注PHP中文網其他相關文章!