Pnum.php 845 B

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