当前位置:Gxlcms > PHP教程 > PHP把文本转换成图片

PHP把文本转换成图片

时间:2021-07-01 10:21:17 帮助过:3人阅读

  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

人气教程排行