1234567891011121314151617181920212223242526272829303132 |
- <?php
- /*
- * 根据文字生成对应图片
- */
- namespace app\home\controller;
- /**
-
- *
-
- *
- * ----------------------------------------------------------------------------
- *
-
- * 控制器
- */
- 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);
- }
- }
|