Computer >> 컴퓨터 >  >> 프로그램 작성 >> PHP

PHP의 imagecolorsforindex() 함수

<시간/>

imagecolorsforindex() 함수는 색인의 색상을 가져옵니다.

구문

imagecolorsforindex ( img, index )

매개변수

  • 이미지 :imagecreatetruecolor()로 이미지 생성

  • 색인 :컬러 인덱스를 설정합니다.

돌아가기

imagecolorsforindex() 함수는 지정된 색상 인덱스에 대한 적절한 값을 포함하는 빨강, 녹색, 파랑 및 알파 키가 있는 연관 배열을 반환합니다.

예시

다음은 예시입니다

<?php
   $img = imagecreatefrompng('https://www.tutorialspoint.com/images/tp-logo-diamond.png');
   $x = 25;
   $y = 45;
   $rgb = imagecolorat($img, 25, 45);
   $colors = imagecolorsforindex($img, $rgb);
   var_dump($colors);
?>

출력

다음은 출력입니다.

array(4) { ["red"]=> int(255) ["green"]=> int(255) ["blue"]=> int(255) ["alpha"]=> int(127) }