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

PHP의 imagecolorstotal() 함수

<시간/>

imagecolorstotal() 함수는 이미지 팔레트의 색상 수를 가져옵니다.

구문

imagecolorstotal (img)

매개변수

  • 이미지 :imagecreatetruecolor()로 만든 이미지입니다.

돌아가기

imagecolorstotal() 함수는 이미지 팔레트의 색상 수를 반환합니다.

예시

다음은 예시입니다

<?php
   $img = imagecreatefromgif('https://www.tutorialspoint.com/images/html.gif');
   echo 'Number of Colors = ' . imagecolorstotal($img);
   imagedestroy($img);
?>

출력

다음은 출력입니다.

Number of Colors = 128