Pnum.php 611 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. /*
  3. * 根据文字生成对应图片
  4. */
  5. namespace app\home\controller;
  6. /**
  7. *
  8. *
  9. * ----------------------------------------------------------------------------
  10. *
  11. * 控制器
  12. */
  13. class Pnum extends BaseMall
  14. {
  15. public function index()
  16. {
  17. $pnum = input('get.pnum');
  18. $im = imagecreate(120, 16);
  19. $bg = imagecolorallocate($im, 247, 247, 247);
  20. $textcolor = imagecolorallocate($im, 101, 101, 101);
  21. imagestring($im, 5, 0, 0, $pnum, $textcolor);
  22. header("Content-type: image/png");
  23. imagepng($im);
  24. }
  25. }