php gd怎么设置字体
时间:2022-02-11 13:46
php gd设置字体的方法:1、使用imagettftext()绘制自定义字体;2、通过“imagepng($image,'images/gd_system_font.png');”自定义保存图像到本地。 本文操作环境:Windows7系统、PHP7.1版,Dell G3电脑 php gd怎么设置字体? GD 库绘画改变字体 1.使用 imagettftext() 绘制自定义字体,包括字体角度和字体大小以及字体文件自定义。 2.自定义保存图像到本地。 推荐学习:《PHP视频教程》 以上就是php gd怎么设置字体的详细内容,更多请关注gxlsystem其它相关文章!// 创建画布
$image = imagecreatetruecolor(500, 300);
// 创建颜色
$white = imagecolorallocate($image, 255, 255, 255);
$rand_color = imagecolorallocate($image, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255)); // 绘制随机颜色
// 绘制一个矩形并使用颜色填充
imagefilledrectangle($image, 0, 0, 500, 300, $white);
// 绘画
imagettftext($image, 20, 0, 100, 100, $rand_color, 'fonts/PingFang.ttc', 'Hello World'); // 自定义字体绘制
imagettftext($image,24,mt_rand(0,180),200,200,$rand_color,'fonts/PingFang.ttc','Hi My PHP'); // 自定义字体与角度绘制
// 输出到浏览器
header('content-type:image/png');
imagepng($image);
// 保存图像到本地
imagepng($image,'images/gd_system_font.png');
// 销毁画布
imagedestroy($image);