php中gd库的简单使用

如果要使用gd库,首先你需要开启gd库的扩展,extension=php_gd2.dll。然后使用phpinfo()函数检测扩展是否被开启。

//创建画布
$width = 500;
$height = 500;
$image = imagecreatetruecolor($width, $height);
//创建颜色
$red = imagecolorallocate($image, 255, 0, 0);
//开始绘画
imagechar($image, 5, 50, 50, 'm', $red);
imagecharup($image, 5, 100, 100, 'a', $red);
imagestring($image, 5, 200, 200, 'hello world', $red);
//告诉浏览器以jpeg图像的方式显示
header('content-type:image/jpeg');
//输出图像
imagejpeg($image);
//销毁资源
imagedestroy($image);
效果如下图所示:
php中gd库的简单使用_第1张图片

你可能感兴趣的:(php)