欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

PHP把文本转换成图片

程序员文章站 2024-01-28 13:40:10
...
  1. header("Content-type: image/png");
  2. $string = $_GET['text'];
  3. $im = imagecreatefrompng("images/button.png");
  4. $color = imagecolorallocate($im, 255, 255, 255);
  5. $px = (imagesx($im) - 7.5 * strlen($string)) / 2;
  6. $py = 9;
  7. $fontSize = 1;
  8. imagestring($im, fontSize, $px, $py, $string, $color);
  9. imagepng($im);
  10. imagedestroy($im);
  11. ?>
复制代码

转换成, PHP