Pnum.php 975 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /*
  3. * 根据文字生成对应图片
  4. */
  5. namespace app\home\controller;
  6. /**
  7. * ============================================================================
  8. *
  9. * ============================================================================
  10. * 版权所有 2014-2028 浙江惠利玛产业互联网有限公司,并保留所有权利。
  11. * 网站地址: https://www.valimart.net/
  12. * ----------------------------------------------------------------------------
  13. *
  14. * ============================================================================
  15. * 控制器
  16. */
  17. class Pnum extends BaseMall {
  18. public function index() {
  19. $pnum = input('get.pnum');
  20. $im = imagecreate(120, 16);
  21. $bg = imagecolorallocate($im, 247, 247, 247);
  22. $textcolor = imagecolorallocate($im, 101, 101, 101);
  23. imagestring($im, 5, 0, 0, $pnum, $textcolor);
  24. header("Content-type: image/png");
  25. imagepng($im);
  26. }
  27. }