首页 > 代码库 > php 画图片3
php 画图片3
<?php // 中文验证码 // 1. 创建画布 $im = imagecreatetruecolor(200, 200); // 2. 创建背景色 // 2.1得到背景颜色 $bg_color = imagecolorallocate($im, mt_rand(200, 255), mt_rand(200, 255), mt_rand(200, 255)); // 2.2 填充画布 imagefill($im, 0, 0, $bg_color); //3. 获取验证码数据 $captcha = ‘北京您好‘; //4. 将验证码写入图片 //4.1得到文字颜色 $str_color = imagecolorallocate($im,mt_rand(0,100),mt_rand(0,100),mt_rand(0,100)); //4.2将字符串写入图片 imagettftext($im, 20, mt_rand(-90, 90), 100, 120, $str_color, ‘STHUPO.TTF‘, ‘北‘); imagettftext($im, 20, mt_rand(-90, 90), 80, 120, $str_color, ‘STHUPO.TTF‘, ‘京‘); imagettftext($im, 20, mt_rand(-90, 90), 90, 120, $str_color, ‘STHUPO.TTF‘, ‘您‘); imagettftext($im, 20, mt_rand(-90, 90), 50, 120, $str_color, ‘STHUPO.TTF‘, ‘好‘); // 指定类型 header(‘Content-type:image/png‘); imagepng($im); //释放资源 imagedestroy($im);
php 画图片3
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。