(PHP 4, PHP 5, PHP 7)
imagestring — ˮƽ�ػ�һ���ַ���
$image
, int $font
, int $x
, int $y
, string $s
, int $col
) : bool
imagestring() �� col
��ɫ���ַ��� s
���� image
�������ͼ��� x
��y
���괦�������ַ������Ͻ����꣬����ͼ������Ͻ�Ϊ 0��0�������
font
�� 1��2��3��4 �� 5����ʹ���������塣
Example #1 imagestring() ����
<?php
// ����һ�� 100X30 ��ͼ��
$im = imagecreate(100, 30);
// ��ɫ��������ɫ�ı�
$bg = imagecolorallocate($im, 255, 255, 255);
$textcolor = imagecolorallocate($im, 0, 0, 255);
// ���ַ���д��ͼ�����Ͻ�
imagestring($im, 5, 0, 0, "Hello world!", $textcolor);
// ���ͼ��
header("Content-type: image/png");
imagepng($im);
?>
�μ� imageloadfont() �� imagettftext()��