imagecolorat( $img, $x, $y )
<?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中文網其他相關文章!