Maison >développement back-end >tutoriel php >Fonction imagecolorat() en PHP

Fonction imagecolorat() en PHP

PHPz
PHPzavant
2023-09-16 14:45:021598parcourir

La fonction imagecolorat() obtient l'index de la couleur du pixel.

: La coordonnée x du point.Fonction imagecolorat() en PHP

y:

La coordonnée y du point.

  • Return

    La fonction imagecolorat() renvoie l'index de couleur ou FALSE en cas d'échec.

    Exemple
  • Ce qui suit est un exemple :

     Démo en direct

    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);
    ?>

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

Déclaration:
Cet article est reproduit dans:. en cas de violation, veuillez contacter admin@php.cn Supprimer