php怎么把文字生成图片

php将文字生成图片,需要用gd2扩展。
首先在php安装目录,找到php.ini,找到extension=php_gd2.dll,把前面的引号去掉。

前端index.html代码如下:
只需要加个img标签,img标签的src属性就写"texttoimg.php?text=",等号后面跟上要生成的文字

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>文字生成图片</title>
</head>
<body>
    <img src="./texttoimg.php?text=测试生成文字" alt="">
</body>
</html>

后端texttoimg.php代码如下:

<?php
  $text=$_REQUEST["text"];//显示的文字

  $size=16;//字体大小

  $font="c:/windows/fonts/SIMHEI.TTF";//字体类型,这里为黑体,具体请在windows/fonts文件夹中,找相应的font文件

  $img=imagecreate(500,24);//创建一个长为500高为16的空白图片

  imagecolorallocate($img,0xff,0xff,0xff);//设置图片背景颜色,这里背景颜色为#ffffff,也就是白色

  $black=imagecolorallocate($img,0x00,0x00,0x00);//设置字体颜色,这里为#000000,也就是黑色

  imagettftext($img,$size,0,0,16,$black,$font,$text);//将ttf文字写到图片中

  header('Content-Type: image/png');//发送头信息

  imagepng($img);//输出图片,输出png使用imagepng方法,输出gif使用imagegif方法
?>

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: