更新于
PHP文字生成图片API
发布于 / 分类: PHP / 已有 2 条评论 / 阅读量: 21183将文字转换为图片
前端:网址/api.php?text=xxxx
<?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);//输出
?>
小同志博客
来自 Windows7-搜狗浏览器 的网友发布于 595 天前
新作网
来自 Windows10-Chrome 的网友发布于 556 天前