imagesetstyle

(PHP 4 >= 4.0.6, PHP 5, PHP 7)

imagesetstyle�趨���ߵķ��

˵��

imagesetstyle ( resource $image , array $style ) : bool

imagesetstyle() �趨���л��ߵĺ��������� imageline() �� imagepolygon()����ʹ��������ɫ IMG_COLOR_STYLED ������ IMG_COLOR_STYLEDBRUSHED ��һ��ͼ��ʱ��ʹ�õķ��

����

image

��ͼ�󴴽�����(����imagecreatetruecolor())���ص�ͼ����Դ��

style

������ɵ����顣�����ͨ������ IMG_COLOR_TRANSPARENT �����һ��͸�����ء�

����ֵ

�ɹ�ʱ���� TRUE�� ������ʧ��ʱ���� FALSE��

����

�����ʾ���ű��ڻ����ϴ����Ͻǵ����½ǻ�һ�����ߣ�

Example #1 imagesetstyle() ����

<?php
header
("Content-type: image/jpeg");
$im  imagecreatetruecolor(100100);
$w   imagecolorallocate($im255255255);
$red imagecolorallocate($im25500);

/* ��һ�����ߣ�5 ����ɫ���أ�5 ����ɫ���� */
$style = array($red$red$red$red$red$w$w$w$w$w);
imagesetstyle($im$style);
imageline($im00100100IMG_COLOR_STYLED);

/* �� imagesetbrush() �� imagesetstyle ��һ��Ц�� */
$style = array($w$w$w$w$w$w$w$w$w$w$w$w$red);
imagesetstyle($im$style);

$brush imagecreatefrompng("http://www.libpng.org/pub/png/images/smile.happy.png");
$w2 imagecolorallocate($brush255255255);
imagecolortransparent($brush$w2);
imagesetbrush($im$brush);
imageline($im10000100IMG_COLOR_STYLEDBRUSHED);

imagejpeg($im);
imagedestroy($im);
?>

�������̵���������ڣ�

Output of example : imagesetstyle()

�μ�