imagecolortransparent() 함수는 투명 이미지의 색상을 설정하는 데 사용됩니다.
구문
imagecolortransparent ( img, color )
매개변수
-
이미지 :imagecreatetruecolor() 함수로 이미지를 생성합니다.
-
색상 :imagecolorallocate()로 생성된 색상 식별자입니다.
돌아가기
imagecolortransparent() 함수는 새로운 투명 색상의 식별자를 반환합니다. 색상이 지정되지 않고 이미지에 투명 색상이 없는 경우 반환 값은 -1입니다.
예시
다음은 예시입니다
<?php $img = imagecreatetruecolor(500, 400); $blue = imagecolorallocate($img, 0, 0, 255); $transparent = imagecolorallocate($img, 0, 0, 0); imagecolortransparent($img, $transparent); imagefilledrectangle($img, 80, 90, 400, 220, $blue); header('Content-Type: image/png'); imagepng($img); imagedestroy($img); ?>
출력
다음은 출력입니다.