


Use PHP to generate verification codes with interference lines, interference points, and character tilt detailed codes
PHP is a class code for generating verification codes. This verification code class supports the generation of interference pixels such as interference points and interference lines, and can also tilt characters. In the class, you can define parameters such as the width, height, length, and tilt angle of the verification code, with detailed usage attached:
<?php class class_authcode{ public $authcode = ''; //验证码 private $width = ''; //验证码图片宽 private $height = ''; //验证码图片高 private $len = ''; //验证码长度 private $tilt = array(-30,30);//验证码倾斜角度 private $font = 'AlteHaasGroteskBold.ttf';//字体文件 private $str = ''; //验证码基 private $im = ''; //生成图片的句柄 //构造函数 function __construct($width=100,$heigh=30,$len=4) { $this->width = $width; $this->height = $heigh; $this->len = $len; $this->str = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'; $str_len = strlen($this->str)-1; for ($i=0; $i<$len; $i++) { $this->authcode .= $this->str[rand(0,$str_len)]; } } //生成验证码图片 private function imagecreate(){ $this->im = imagecreatetruecolor($this->width,$this->height); } //干扰颜色 private function ext_color() { return imagecolorallocate($this->im,rand(50, 180),rand(50, 180),rand(50, 180)); } //生成干扰点 private function ext_point() { for ($i=0; $i<$this->width*2; $i++) { imagesetpixel($this->im,rand(1,$this->width-1),rand(1,$this->height-1),$this->ext_color()); } } //生成干扰线 private function ext_line() { for ($i=0; $i<$this->len; $i++) { $x1 = rand(1,$this->width-1); $y1 = rand(1,$this->height-1); $x2 = rand(1,$this->width-1); $y2 = rand(1,$this->height-1); imageline($this->im,$x1,$y1,$x2,$y2,$this->ext_color()); } } //把验证码写入图片(不能和$this->imgstrfloat()同时使用) private function imgstr() { $old_x = 1; for ($i=0; $i<$this->len; $i++) { $fontsize = rand(2,5); //字体大小 $tmp_1 = $fontsize*2.5; $tmp_2 = $i>0 $tmp_1 : 0; $y = rand(1,$this->height/2); $x = rand($old_x+$tmp_2, ($i+1)*($this->width)/$this->len-$tmp_1); $old_x = $x; $color = imagecolorallocate($this->im,rand(200, 255),rand(200, 255),rand(200, 255)); imagestring($this->im,$fontsize,$x,$y,$this->authcode[$i],$color); } } //把验证码倾斜写入图片(注意这里不能和$this->imgstr()方法同时使用) private function imgstrfloat() { $old_x = 1; for ($i=0; $i<$this->len; $i++) { $fontfloat = rand($this->tilt[0],$this->tilt[1]); $fontsize = rand(10,15); //字体大小 $tmp_1 = $i>0 $fontsize : 0; $y = rand($fontsize+2, $this->height-2); $x = rand($old_x+$tmp_1+2, ($i+1)*($this->width)/$this->len-$fontsize-2); $old_x = $x; $color = imagecolorallocate($this->im, rand(200, 255), rand(200, 255), rand(200, 255)); imagettftext($this->im, $fontsize, $fontfloat, $x, $y, $color, $this->font, $this->authcode[$i]); } } //输出验证码图片 function output() { $this->imagecreate(); $this->imgstr(); //$this->imgstrfloat(); $this->ext_point(); $this->ext_line(); header('content-type:image/png'); imagepng($this->im); imagedestroy($this->im); } } ?>
Instructions for usage of this verification code:
$obj = new class_authcode();//实例化对象,并设置验证码图片的宽、高和验证码的长度 $obj->$authcode; //获取验证码 $obj->output(); //输出验证码图片
The above is the PHP generated verification Code class code, please point out any deficiencies.
For more related PHP questions, please visit the PHP Chinese website: https://www.php.cn/
The above is the detailed content of Use PHP to generate verification codes with interference lines, interference points, and character tilt detailed codes. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



What should I do if Google Chrome does not display the verification code image? Sometimes you need a verification code to log in to a web page using Google Chrome. Some users find that Google Chrome cannot display the content of the image properly when using image verification codes. What should be done? The editor below will introduce how to deal with the Google Chrome verification code not being displayed. I hope it will be helpful to everyone! Method introduction: 1. Enter the software, click the "More" button in the upper right corner, and select "Settings" in the option list below to enter. 2. After entering the new interface, click the "Privacy Settings and Security" option on the left. 3. Then click "Website Settings" on the right

The virtual number can receive the verification code. As long as the mobile phone number filled in during registration complies with the regulations and the mobile phone number can be connected normally, you can receive the SMS verification code. However, you need to be careful when using virtual mobile phone numbers. Some websites do not support virtual mobile phone number registration, so you need to choose a regular virtual mobile phone number service provider.

Failure to receive the verification code on your mobile phone is caused by network problems, mobile phone settings problems, mobile phone operator problems and personal settings problems. Detailed introduction: 1. Network problems. The network environment where the mobile phone is located is unstable or the signal is weak, which may cause the verification code to be unable to be delivered in time; 2. Mobile phone setting problems. The text message or voice function of the mobile phone is accidentally turned off, or the The verification code sending number is added to the blacklist, resulting in the verification code not being received normally; 3. Mobile phone operator issues, the mobile phone operator may have malfunctions or maintenance, resulting in the verification code not being delivered in time, etc.

PHP image processing case: How to implement the verification code function of images. With the rapid development of the Internet, verification codes have become one of the important means to protect website security. Verification code is a verification method that uses image recognition technology to determine whether the user is a real user. This article will introduce how to use PHP to implement the verification code function of images, and come with code examples. Introduction A verification code is a picture containing random characters. The user needs to enter the characters in the picture to pass the verification. The main process of implementing verification code includes generating random characters and drawing characters into pictures.

With the development of the Internet and the popularity of smartphones, the verification code login function is adopted by more and more websites and applications. Verification code login is a login method that verifies the user's identity by entering the correct verification code to improve security and prevent malicious attacks. In PHP development, implementing a simple verification code login function is not complicated and can be completed through the following steps. Create a database table First, we need to create a table in the database to store verification code information. The table structure can contain the following fields: id: auto-incrementing primary key phon

“The most annoying thing is all kinds of weird (or even perverted) verification codes when you log into a website.” Now, there is good news and bad news. The good news is: AI can do this for you. If you don’t believe me, here are three real cases of increasing recognition difficulty: And these are the answers given by a model called “Pix2Struct”: Are they all accurate and word for word? Some netizens lamented: Sure, the accuracy is better than mine. So can it be made into a browser plug-in? ? Yes, some people said: Even though these cases are relatively simple, if you just fine-tune it, I can't imagine how powerful the effect will be. So, the bad news is - the verification code will soon be unable to stop the robots! (Danger danger danger...) How to do it? Pix2St

How to create a verification code image using PHP? CAPTCHA is a commonly used method to verify whether the user is a human and not a machine. On websites, we often see verification code images, which require users to enter random characters or numbers displayed on the image to complete operations such as login, registration, and commenting. This article will introduce how to use PHP to create a verification code image and provide specific code examples. 1. PHPGD library To create a verification code image, we need to use PHP's GD library. The GD library is an extension for processing images.

Today I am sharing with you an OCR application - ddddocr automatically recognizes verification codes. The first four d's are the first pinyin of "daidai younger brother". [/Laughter]. Project address: https://github.com/sml2h3/ddddocr. When using it, use the pip command to install it directly, just pipinstalldddddocr. The core technology of OCR includes two aspects. One is the target detection model to detect the text in the picture, and the other is the text recognition model to convert the text in the picture into text. The first type of verification codes is the simplest. They do not have complex background images, so the target detection model can be omitted and the images can be directly sent to the text recognition model. The identification code is as follows: impor
