<?php
$size = 30;//字体大小
$font ="./hy.ttf";//字体这里去自己下载一个
$text = $_GET['text'];
$img =imagecreate(500,80);//设置底图大小
imagecolorallocate($img,0xff,0xff,0xff);//生成底图 我写的白色
$black = imagecolorallocate($img,0,0,0);//设置字体颜色 我写的黑色
imagettftext($img,$size,0,100,50,$black,$font,$text); //生成图片
header('Content-Type: image/png');//声明格式为png
imagegif($img);//输出
?>

前端:网址/api.php?text=此处填写要转换的文字