search
HomeBackend DevelopmentPHP TutorialHow to create a verification code image using PHP?
How to create a verification code image using PHP?Sep 13, 2023 am 11:40 AM
phpVerification codecreate

How to create a verification code image using PHP?

How to create a verification code image using PHP?

Verification code (CAPTCHA) is a commonly used method to verify whether the user is a human rather than 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. PHP GD library

To create a verification code image, we need to use PHP's GD library. The GD library is an extension library for image processing. It provides a series of functions for creating, processing and outputting images. First, we need to ensure that the GD library is enabled on the server. You can check the settings of the GD library by executing the phpinfo() function in the code.

If the GD library is enabled, you can start creating verification code images.

2. Create a verification code image

The main steps to create a verification code image include generating random strings, creating images, drawing interference lines and noise points, and outputting images.

  1. Generate a random string

First, we need to generate a random string as the content of the verification code. You can use the mt_rand() function to generate a random sequence of numbers or letters of a specified length, as shown below:

$length = 6; // 验证码长度
$chars = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
$code = '';
for ($i = 0; $i < $length; $i++) {
    $code .= $chars[mt_rand(0, strlen($chars) - 1)];
}
  1. Create a picture

Next , we need to create a blank verification code image. You can use the imagecreate() function to create an image with a specified width and height, as shown below:

$width = 120; // 图片宽度
$height = 40; // 图片高度
$image = imagecreate($width, $height);
  1. Set the background color and text color

us You can use the imagecolorallocate() function to set the background and text color of the image, as follows:

$bg_color = imagecolorallocate($image, 255, 255, 255); // 白色背景
$text_color = imagecolorallocate($image, 0, 0, 0); // 黑色文字
  1. Draw text

Use imagestring ()The function draws random strings onto the verification code image, as shown below:

$font_size = 18; // 文字大小
$x = ($width - strlen($code) * $font_size) / 2; // 文字起始位置横坐标
$y = ($height - $font_size) / 2; // 文字起始位置纵坐标
imagestring($image, $font_size, $x, $y, $code, $text_color);
  1. Draw interference lines and noise points

In order to improve the performance of the verification code Safety, you can draw some interference lines and noise on the picture. You can use the imagesetpixel() function to draw noise points and the imageline() function to draw interference lines.

for ($i = 0; $i < 100; $i++) {
    $x = mt_rand(0, $width - 1);
    $y = mt_rand(0, $height - 1);
    imagesetpixel($image, $x, $y, $text_color);
}

for ($i = 0; $i < 5; $i++) {
    $x1 = mt_rand(0, $width / 2);
    $y1 = mt_rand(0, $height - 1);
    $x2 = mt_rand($width / 2, $width - 1);
    $y2 = mt_rand(0, $height - 1);
    imageline($image, $x1, $y1, $x2, $y2, $text_color);
}
  1. Output image

Finally, we need to output the verification code image to the browser. You can use the header() function to set the Content-Type of the image, and use the imagejpeg() function to output the image to the browser.

header('Content-Type: image/jpeg');
imagejpeg($image);
  1. Destroy image resources

Remember to destroy image resources after completing image output to save server memory.

imagedestroy($image);

3. Complete code example

The following is a complete PHP code example for creating a verification code image:

Save the above code as captcha.php and pass Access the file with a browser and you will see the generated verification code image.

Summary

This article introduces how to use the GD library and PHP to create verification code images, and provides specific code examples. By understanding the principle of generating verification code images, we can carry out customized development according to actual business needs and improve the security and reliability of user verification. Hope this article helps you!

The above is the detailed content of How to create a verification code image using PHP?. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
手机为什么收不到验证码手机为什么收不到验证码Aug 17, 2023 pm 02:49 PM

手机收不到验证码是网络问题、手机设置问题、手机运营商问题和个人设置问题导致的。详情介绍:1、网络问题,手机所处的网络环境不稳定或者信号弱,就有可能导致验证码无法及时送达;2、手机设置问题,不小心将手机的短信或语音功能关闭,或者将验证码的发送号码加入到黑名单中,从而导致验证码无法正常收到;3、手机运营商问题,手机运营商可能会出现故障或者维护,导致验证码无法及时送达等等。

PHP图片处理案例:如何实现图片的验证码功能PHP图片处理案例:如何实现图片的验证码功能Aug 17, 2023 pm 12:09 PM

PHP图片处理案例:如何实现图片的验证码功能随着互联网的快速发展,验证码成为了保护网站安全的重要手段之一。验证码是一种通过图像识别技术来确定用户是否为真实用户的验证方式。本文将介绍如何使用PHP来实现图片的验证码功能,并附带代码示例。简介验证码是一张包含随机字符的图片,用户需要输入图片中的字符才能通过验证。实现验证码的主要过程包括生成随机字符、绘制字符到图片

验证码拦不住机器人了!谷歌AI已能精准识别模糊文字,GPT-4则装瞎求人帮忙验证码拦不住机器人了!谷歌AI已能精准识别模糊文字,GPT-4则装瞎求人帮忙Apr 12, 2023 am 09:46 AM

“最烦登网站时各种奇奇怪怪(甚至变态)的验证码了。”现在,有一个好消息和一个坏消息。好消息就是:AI可以帮你代劳这件事了。不信你瞧,以下是三张识别难度依次递增的真实案例:而这些是一个名为“Pix2Struct”的模型给出的答案:全部准确无误、一字不差有没有?有网友感叹:确定,准确性比我强。所以可不可以做成浏览器插件??不错,有人表示:别看这几个案例相比还算简单,但凡微调一下,我都不敢想象其效果有多厉害了。所以,坏消息就是——验证码马上就要拦不住机器人了!(危险危险危险……)如何做到?Pix2St

PHP开发指南:实现验证码登录PHP开发指南:实现验证码登录Jul 01, 2023 am 09:27 AM

随着互联网的发展和智能手机的普及,验证码登录功能被越来越多的网站和应用程序采用。验证码登录是一种通过输入正确的验证码来验证用户身份的登录方式,以提高安全性和防止恶意攻击。在PHP开发中,实现简单的验证码登录功能并不复杂,可以通过以下步骤来完成。创建数据库表首先,我们需要在数据库中创建一个用于存储验证码信息的表。表结构可以包含以下字段:id:自增主键phon

用OCR技术,自动识别各种验证码,工具已开源用OCR技术,自动识别各种验证码,工具已开源May 25, 2023 am 10:07 AM

今天我在给大家分享一个OCR​应用——ddddocr自动识别验证码。前面4个d是“带带弟弟”的首拼音。[/笑哭]。项目地址:https://github.com/sml2h3/ddddocr。使用的时候用pip​命令直接安装即可pipinstallddddocr。OCR的核心技术包含两方面,一是目标检测模型检测图片中的文字,二是文字识别模型,将图片中的文字转成文本文字。第一类验证码最简单,它们没有复杂的背景图片,所以目标检测模型可以省略,直接将图片送入文字识别模型即可。识别代码如下:impor

虚拟号码怎样接收验证码虚拟号码怎样接收验证码Oct 31, 2019 pm 04:52 PM

虚拟号码接收验证码的方法:首先进入易码验证码接收平台;然后注册网站会员;接着打开短信验证码服务,并选择运营商;最后获取虚拟手机号,并到要发送验证码的平台,把手机号填上去,选择【发送验证码】即可。

如何使用PHP创建验证码图片?如何使用PHP创建验证码图片?Sep 13, 2023 am 11:40 AM

如何使用PHP创建验证码图片?验证码(CAPTCHA)是一种常用的验证用户是否为人而不是机器的方法。在网站上,我们经常会看到验证码图片,要求用户输入图片上显示的随机字符或数字,以完成登录、注册、评论等操作。本文将介绍如何使用PHP创建验证码图片,并提供具体的代码示例。一、PHPGD库要创建验证码图片,我们需要使用PHP的GD库。GD库是一个用于处理图像的扩

手机收到各种平台验证码怎么回事手机收到各种平台验证码怎么回事Sep 21, 2023 pm 03:31 PM

手机收到各种平台验证码可能是因为个人信息被盗用、手机号码被滥用或者手机号码被误填或误用。详细介绍:1、个人信息被盗用,黑客或者不法分子可能通过各种渠道获取到你的个人信息,然后利用这些信息在各种平台上注册账号;2、手机号码被滥用,有些不法分子会通过各种手段获取到大量的手机号码,然后利用这些手机号码进行各种欺诈活动;3、手机号码被误填或误用等等。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.