PHP
 Computer >> コンピューター >  >> プログラミング >> PHP

PHPのimagecolorclosesthwb()関数


imagecolorclosesthwb()関数は、色相、白、黒の色のインデックスを取得します

構文

imagecolorclosesthwb ( $img, $red, $green, $blue )

パラメータ

  • img :imagecreatetruecolor()で画像を作成する

  • :赤色成分

  • :緑色成分

  • :青色成分

戻る

imagecolorclosesthwb()関数は、指定された色に最も近い色相、白、および黒さを持つ色のインデックスを持つ整数を返します。

次に例を示します。

<?php
   $img = imagecreatefromgif('https://www.tutorialspoint.com/images/html.gif');
   echo 'HWB = '. imagecolorclosesthwb($img, 50, 110, 90);
   imagedestroy($img);
?>

出力

出力は次のとおりです。

HWB = 87

  1. PHPのimagecolortransparent()関数

    imagecolortransparent()関数は、透明な画像の色を設定するために使用されます。 構文 imagecolortransparent ( img, color ) パラメータ img :imagecreatetruecolor()関数を使用して画像を作成します。 色 :imagecolorallocate()で作成された色識別子。 戻る imagecolortransparent()関数は、新しい透明色の識別子を返します。色が指定されておらず、画像に透明色がない場合、戻り値は-1です。 例 以下は例です <?php    $im

  2. PHPのimagecolorallocate()関数

    imagecolorallocate()関数は、画像に色を割り当てます。 構文 int imagecolorallocate ( $img, $red, $green, $blue ) パラメータ img: imagecreatetruecolor()で作成された画像リソース。 赤: 赤色成分 緑: 緑色成分 青 :青色成分 戻る imagecolorallocate()関数は、RGB形式の色を返します。 例 次に例を示します。 <?php    $img = imagecreatetruecolor(600, 220);