PHPのimagecolorat()関数
imagecolorat()関数は、ピクセルの色のインデックスを取得します。
構文
imagecolorat( $img, $x, $y )
パラメータ
-
img :imagecreatetruecolor()関数を使用して画像を作成します。
-
x :ポイントのx座標。
-
y: ポイントのy座標。
戻る
imagecolorat()関数は、失敗するとカラーインデックスまたはFALSEを返します。
例
次に例を示します。
<?php $img = imagecreatefrompng("https://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のimagefilledrectangle()関数
imagefilledrectangle()関数は、塗りつぶされた長方形を描画します。 構文 imagefilledrectangle( $img, $x1, $y1, $x2, $y2, $color ) パラメータ 画像 imagecreatetruecolor()を使用して空白の画像を作成します。 x1 ポイント1のx座標。 y1 ポイント1のy座標。 x2 ポイント2のx座標。 y2 ポイント2のy座標。 色 塗りつぶしの色。 戻る imagefilledrectangle()関数は、成功した場合はTRUEを返し、失
-
PHPのimagefilledellipse()関数
imagefilledellipse()関数は、塗りつぶされた楕円を描画するために使用されます。 構文 imagefilledellipse( $img, $cx, $cy, $width, $height, $color ) パラメータ img これにより、imagecreatetruecolor()を使用して空白の画像が作成されます。 cx 中心のx座標。 cy 中心のy座標。 幅 楕円の幅。 高さ 楕円の高さ。 色 塗りつぶしの色。 戻る imagefilledellipse()関数は、成功した場合はTRUEを返し、失敗した場合はFA