(PHP 4, PHP 5, PHP 7)
imagecolorallocate — Ϊһ��ͼ�������ɫ
$image
, int $red
, int $green
, int $blue
) : int
imagecolorallocate() ����һ����ʶ�����������ɸ�����
RGB �ɷ���ɵ���ɫ��red
��green
��
blue
�ֱ�������Ҫ����ɫ�ĺ죬�̣����ɷ֡���Щ������
0 �� 255 ����������ʮ�����Ƶ� 0x00 �� 0xFF��imagecolorallocate()
���뱻�����Դ���ÿһ������ image
�������ͼ���е���ɫ��
Note:
��һ�ζ� imagecolorallocate() �ĵ��û�����ڵ�ɫ���ͼ����䱳��ɫ������ imagecreate() ������ͼ��
Example #1 imagecolorallocate() ����
<?php
$im = imagecreate('example.jpg', 100, 100);
// ������Ϊ��ɫ
$background = imagecolorallocate($im, 255, 0, 0);
// �趨һЩ��ɫ
$white = imagecolorallocate($im, 255, 255, 255);
$black = imagecolorallocate($im, 0, 0, 0);
// ʮ�����Ʒ�ʽ
$white = imagecolorallocate($im, 0xFF, 0xFF, 0xFF);
$black = imagecolorallocate($im, 0x00, 0x00, 0x00);
?>
�������ʧ���� -1��