imagecreatetruecolor

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

imagecreatetruecolor�½�һ�����ɫͼ��

˵��

imagecreatetruecolor ( int $width , int $height ) : resource

imagecreatetruecolor() ����һ��ͼ���ʶ����������һ����СΪ x_size �� y_size �ĺ�ɫͼ��

�Ƿ����˱�����ȡ���� PHP �� GD �İ汾���� PHP 4.0.6 �� 4.1.x ֻҪ������ GD ģ�鱾����һֱ���ڣ�������û�а�װ GD2 ��ʱ����ã�PHP ���������������˳����� PHP 4.2.x �д���Ϊ��Ϊ������������Ǵ��������汾ֻ�ڰ�װ����ȷ�� GD �汾ʱ�����˱�������

����

width

ͼ���ȡ�

height

ͼ��߶ȡ�

����ֵ

�ɹ��󷵻�ͼ����Դ,ʧ�ܺ󷵻� FALSE ��

����

Example #1 �½�һ���µ� GD ͼ���������ͼ��

<?php
header 
('Content-Type: image/png');
$im = @imagecreatetruecolor(12020)
      or die(
'Cannot Initialize new GD image stream');
$text_color imagecolorallocate($im2331491);
imagestring($im155,  'A Simple Text String'$text_color);
imagepng($im);
imagedestroy($im);
?>

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

���ӵ������ �½�һ���µ� GD ͼ���������ͼ��

ע��

Note: �˺�����Ҫ GD 2.0.1 ����߰汾(�Ƽ� 2.0.28 �����߰汾)��

�μ�