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

PHP의 imagecolorexact() 함수

<시간/>

imagecolorexact() 함수는 지정된 색상의 인덱스를 가져옵니다.

구문

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

매개변수

  • 이미지 :imagecreatetruecolor()로 생성된 이미지 리소스입니다.

  • 빨간색 :붉은색 성분

  • 녹색: 녹색 성분

  • 파란색 :파란색 성분

돌아가기

imagecolorexact() 함수는 팔레트에서 지정된 색상의 인덱스를 반환하거나 색상이 존재하지 않는 경우 -1을 반환합니다.

예시

다음은 예입니다.

<?php
   $img =    imagecreatefrompng('https://www.tutorialspoint.com/assets/videos/courses/67/images/course_67_image.png');
   $colors = Array();
   $colors[] = imagecolorexact($img, 30, 90, 50);
   $colors[] = imagecolorexact($img, 80, 120, 100);
   $colors[] = imagecolorexact($img, 25, 80, 50);
   print_r($colors);
   imagedestroy($img);
?>

출력

다음은 출력입니다.

Array ( [0] => 1989170 [1] => 5273700 [2] => 1658930 )