为了账号安全,请及时绑定邮箱和手机立即绑定
<?php
session_start ();

$img = imagecreatetruecolor ( 100, 40 );
$black = imagecolorallocate ( $img, 0x00, 0x00, 0x00 );
$green = imagecolorallocate ( $img, 0x00, 0x00, 0x00 );
$white = imagecolorallocate ( $img, 0xFF, 0xFF, 0xFF );
imagefill ( $img, 0, 0, $white );
$code = '';
for($i = 0; $i < 4; $i ++) {
	$code .= rand ( 0, 9 );
}

imagestring ( $img, 5, 10, 10, $code, $black );
for($i = 0; $i < 50; $i ++) {
	imagesetpixel ( $img, rand ( 0, 100 ), rand ( 0, 100 ), $black );
	imagesetpixel ( $img, rand ( 0, 100 ), rand ( 0, 100 ), $black );
}
header ( "content-type:image/png; charset=UTF-8" );
imagepng ( $img );
imagedestroy ( $img );

 
?>

乱码 在zdd上

正在回答

0 回答

举报

0/150
提交
取消
PHP进阶篇
  • 参与学习       181828    人
  • 解答问题       2577    个

轻松学习PHP中级课程,进行全面了解,用PHP快速开发网站程序

进入课程
意见反馈 帮助中心 APP下载
官方微信