【PHP】imagettf 文字图片合成居中

【PHP】imagettf 文字图片合成居中

// 加载字体文件
$fontFile = public_path().'/simsun.ttc';
// 获取文字尺寸
$size = 20; // 文字大小
$bbox = imagettfbbox($size, 0, $fontFile, $name); // 获取文字边框框框
// 计算居中位置
$width = $bbox[2] - $bbox[0]; // 文字宽度
$height = $bbox[1] - $bbox[7]; // 文字高度
$x = (imagesx($backImg) - $width) / 2; // 水平居中位置
$y = (imagesy($backImg) - $height) / 2 + $bbox[1]; // 垂直居中位置

$textColor = imagecolorallocate($qrcodeImg, 0, 0, 0); // 黑色文字
imagettftext($backImg, $size, 0, $x, $y, $textColor, $fontFile, $name);
//输出合成图片
imagepng($backImg, $path);

你可能感兴趣的:(php,开发语言)