update : 2015.11.03
php.shukuma.com검색:
|
imagecolorallocatealpha(PHP 4 >= 4.3.2, PHP 5, PHP 7) imagecolorallocatealpha — Allocate a color for an image 설명
int imagecolorallocatealpha
( resource
$image
, int $red
, int $green
, int $blue
, int $alpha
)
imagecolorallocatealpha() behaves identically to
imagecolorallocate() with the addition of the transparency
parameter 인수
red , green
and blue parameters are integers
between 0 and 255 or hexadecimals between 0x00 and 0xFF.
반환값
A color identifier or 변경점
예제
Example #1 Example of using imagecolorallocatealpha()
<?php 위 예제의 출력 예시: 주의
참고
|