(PHP 4, PHP 5, PHP 7)
imagechar — ˮƽ�ػ�һ���ַ�
$image
, int $font
, int $x
, int $y
, string $c
, int $color
) : bool
imagechar() ���ַ���
c
�ĵ�һ���ַ�����
image
ָ����ͼ���У������Ͻ�λ��
x
��y
��ͼ�����Ͻ�Ϊ 0,
0������ɫΪ color
����� font
�� 1��2��3��4 �� 5����ʹ�����õ����壨��������ֶ�Ӧ�ڸ�������壩��
Example #1 imagechar() ����
<?php
$im = imagecreate(100,100);
$string = 'PHP';
$bg = imagecolorallocate($im, 255, 255, 255);
$black = imagecolorallocate($im, 0, 0, 0);
// prints a black "P" in the top left corner
imagechar($im, 1, 0, 0, $string, $black);
header('Content-type: image/png');
imagepng($im);
?>
�μ� imagecharup() �� imageloadfont()��