ホームページ >バックエンド開発 >PHPチュートリアル >PHP の imagecolorat() 関数
imagecolorat( $img, $x, $y )
img: imagecreatetruecolor() 関数を使用して画像を作成します。
xxx: 点の x 座標。
y: 点の 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 中国語 Web サイトの他の関連記事を参照してください。