imageantialias

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

imageantialias�Ƿ�ʹ�ÿ���ݣ�antialias������

˵��

imageantialias ( resource $image , bool $enabled ) : bool

���߶κͶ�������ÿ��ٻ�ͼ����ݷ�������֧�� alpha ���֡�ʹ��ֱ�ӻ�ɫ���������������ɫͼ��

��֧���߿�ͷ��

ʹ�ÿ���ݺ�͸������ɫ���ܳ���δԤ�ڵĽ������ɫ�����ѱ���ɫ�����κ�������ɫʹ�á�ȱ�� alpha ���ֵ�֧�ֵ��²�������� alpha ����ݷ�����

����

image

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

enabled

�Ƿ����ÿ���ݡ�

����ֵ

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

����

Example #1 A comparison of two lines, one with anti-aliasing switched on

<?php
// Setup an anti-aliased image and a normal image
$aa imagecreatetruecolor(400100);
$normal imagecreatetruecolor(200100);

// Switch antialiasing on for one image
imageantialias($aatrue);

// Allocate colors
$red imagecolorallocate($normal25500);
$red_aa imagecolorallocate($aa25500);

// Draw two lines, one with AA enabled
imageline($normal00200100$red);
imageline($aa00200100$red_aa);

// Merge the two images side by side for output (AA: left, Normal: Right)
imagecopymerge($aa$normal200000200100100);

// Output image
header('Content-type: image/png');

imagepng($aa);
imagedestroy($aa);
imagedestroy($normal);
?>

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

Output of example : A comparison of two lines, one with anti-aliasing switched on

ע��

Note: �˺��������� GD ���������� PHP �汾�п��á�

�μ�