12345678910111213141516171819202122232425262728293031 |
- <?php
- /*
- * 根据文字生成对应图片
- */
- namespace app\home\controller;
- /**
- * ============================================================================
- *
- * ============================================================================
- * 版权所有 2014-2028 浙江惠利玛产业互联网有限公司,并保留所有权利。
- * 网站地址: https://www.valimart.net/
- * ----------------------------------------------------------------------------
- *
- * ============================================================================
- * 控制器
- */
- class Pnum extends BaseMall {
- public function index() {
- $pnum = input('get.pnum');
- $im = imagecreate(120, 16);
- $bg = imagecolorallocate($im, 247, 247, 247);
- $textcolor = imagecolorallocate($im, 101, 101, 101);
- imagestring($im, 5, 0, 0, $pnum, $textcolor);
- header("Content-type: image/png");
- imagepng($im);
- }
- }
|