Home Backend Development PHP Tutorial Use gd image verification code to generate and save in php

Use gd image verification code to generate and save in php

Jul 29, 2016 am 09:01 AM
100 img rand

<code><span><span><?php</span><span>//画画布</span><span>$img</span> = imagecreatetruecolor(<span>100</span>, <span>40</span>);
<span>//三种颜色</span><span>$black</span> = imagecolorallocate(<span>$img</span>, <span>0x00</span>, <span>0x00</span>, <span>0x00</span>);
<span>$green</span> = imagecolorallocate(<span>$img</span>, <span>0x00</span>, <span>0xFF</span>, <span>0x00</span>);
<span>$white</span> = imagecolorallocate(<span>$img</span>, <span>0xFF</span>, <span>0xFF</span>, <span>0xFF</span>);
<span>//填充白色</span>
imagefill(<span>$img</span>,<span>0</span>,<span>0</span>,<span>$white</span>);
<span>//生成随机的验证码</span><span>$code</span> = <span>''</span>;
<span>for</span>(<span>$i</span> = <span>0</span>; <span>$i</span> < <span>4</span>; <span>$i</span>++) {
    <span>$code</span> .= rand(<span>0</span>, <span>9</span>);
}
imagestring(<span>$img</span>, <span>5</span>, <span>10</span>, <span>10</span>, <span>$code</span>, <span>$black</span>);
<span>//加入噪点干扰</span><span>for</span>(<span>$i</span>=<span>0</span>;<span>$i</span><<span>50</span>;<span>$i</span>++) {
    imagesetpixel(<span>$img</span>, rand(<span>0</span>, <span>100</span>) , rand(<span>0</span>, <span>100</span>) , <span>$black</span>);
    imagesetpixel(<span>$img</span>, rand(<span>0</span>, <span>100</span>) , rand(<span>0</span>, <span>100</span>) , <span>$green</span>);
}
<span>//png输出验证码jpeg输出到当前文件夹</span>
header(<span>"content-type: image/png"</span>);
imagepng(<span>$img</span>);
imagejpeg(<span>$img</span>, <span>"./ok.jpeg"</span>, <span>75</span>);
imagedestroy(<span>$img</span>);

```<span><?php</span><span>//画画布</span><span>$img</span> = imagecreatetruecolor(<span>100</span>, <span>40</span>);
<span>//三种颜色</span><span>$black</span> = imagecolorallocate(<span>$img</span>, <span>0x00</span>, <span>0x00</span>, <span>0x00</span>);
<span>$green</span> = imagecolorallocate(<span>$img</span>, <span>0x00</span>, <span>0xFF</span>, <span>0x00</span>);
<span>$white</span> = imagecolorallocate(<span>$img</span>, <span>0xFF</span>, <span>0xFF</span>, <span>0xFF</span>);
<span>//填充白色</span>
imagefill(<span>$img</span>,<span>0</span>,<span>0</span>,<span>$white</span>);
<span>//生成随机的验证码</span><span>$code</span> = <span>''</span>;
<span>for</span>(<span>$i</span> = <span>0</span>; <span>$i</span> < <span>4</span>; <span>$i</span>++) {
    <span>$code</span> .= rand(<span>0</span>, <span>9</span>);
}
imagestring(<span>$img</span>, <span>5</span>, <span>10</span>, <span>10</span>, <span>$code</span>, <span>$black</span>);
<span>//加入噪点干扰</span><span>for</span>(<span>$i</span>=<span>0</span>;<span>$i</span><<span>50</span>;<span>$i</span>++) {
    imagesetpixel(<span>$img</span>, rand(<span>0</span>, <span>100</span>) , rand(<span>0</span>, <span>100</span>) , <span>$black</span>);
    imagesetpixel(<span>$img</span>, rand(<span>0</span>, <span>100</span>) , rand(<span>0</span>, <span>100</span>) , <span>$green</span>);
}
<span>//png输出验证码jpeg输出到当前文件夹</span>
header(<span>"content-type: image/png"</span>);
imagepng(<span>$img</span>);
imagejpeg(<span>$img</span>, <span>"./ok.jpeg"</span>, <span>75</span>);
imagedestroy(<span>$img</span>);</span></code>
Copy after login
').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i ').text(i)); }; $numbering.fadeIn(1700); }); });

The above introduces the use of gd image verification code generation and saving in PHP, including aspects of the content. I hope it will be helpful to friends who are interested in PHP tutorials.

Statement of this Website
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

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

Video Face Swap

Video Face Swap

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

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to open img file How to open img file Sep 18, 2023 am 09:40 AM

Methods to open img files include using virtual optical drive software, using compression software, and using special tools. Detailed introduction: 1. Use virtual optical drive software to open, download and install a virtual optical drive software, right-click the img file, select "Open with" or "Associated Program", select the installed virtual optical drive software in the pop-up dialog box, virtual The optical drive software will automatically load the img file and use it as a disc image in the virtual optical drive. Double-click the disc icon in the virtual optical drive to open the img file and access its contents, etc.

How to solve 'undefined: rand.Seed' error in golang? How to solve 'undefined: rand.Seed' error in golang? Jun 25, 2023 am 08:34 AM

During the development or learning process of using Golang, we may encounter the error message of undefined:rand.Seed. This error usually occurs when you need to use a random number generator, because in Golang you need to set a random number seed before you can use the function in the rand package. This article will explain how to resolve this error. 1. Introduce the math/rand package. First, we need to introduce the math/rand package into the code. exist

How to open img file How to open img file Jul 06, 2023 pm 04:17 PM

How to open the img file: 1. Confirm the img file path; 2. Use the img file opener; 3. Select the opening method; 4. View the picture; 5. Save the picture. The img file is a commonly used image file format, usually used to store picture data.

What is the format of img? What is the format of img? Mar 17, 2023 am 10:33 AM

img is a file compression format, mainly used to create image files of floppy disks. It can be used to compress the contents of an entire floppy disk or an entire CD; files with the extension ".IMG" are created using this file format. ; The img file includes 3 basic nodes, namely "Ehfa_HeaderTag", "Ehfa_File" and "Ehfa_Entry".

How to solve the problem of generating the same random numbers using php rand function How to solve the problem of generating the same random numbers using php rand function Mar 23, 2023 am 09:17 AM

The rand() function uses the same initial seeds on each call. The default initial seed is obtained from the operating system's time, but it only has microsecond accuracy. That is, within a very short period of time, many rand() function calls will use the same initial seed, resulting in the same random number generation. So, how to solve this problem?

How to synchronize random number generation in Golang parallel processing? How to synchronize random number generation in Golang parallel processing? Jun 03, 2024 pm 02:53 PM

Synchronizing random number generation in Go concurrent programming: Use a mutex (sync.Mutex) to control access to the rand.Rand random number generator. Each goroutine acquires the mutex lock before generating random numbers and releases the mutex lock after generating it. This ensures that only one goroutine can access the random number generator at a time, eliminating data races.

How to change the src attribute of img in jquery How to change the src attribute of img in jquery Mar 03, 2022 pm 03:41 PM

How to change the img src attribute in jquery: 1. Use the attr() attribute, the syntax "$("img").attr("src","The address of the image file")"; 2. Use the prop() method, the syntax " $("img").prop("src","The address of the image file")".

U disk pe cannot read img U disk pe cannot read img Mar 19, 2024 pm 12:07 PM

U disk is one of the frequently used storage devices. There will also be some minor problems during use. For example: the U disk cannot be read. How to solve it? Put it away! Can’t read the USB flash drive? 4 steps to teach you how to solve the problem easily. After the USB flash drive has been inserted into the computer, click the Start menu, select Control Panel and put it away! Can’t read the USB flash drive? 4 steps to teach you to easily solve the problem. Find and double-click Device Manager in Control Panel. Keep it! Can’t read the USB flash drive? 4 steps to teach you how to easily solve the problem: Find the Universal Serial Bus controller on the main interface of the Device Manager and put it away! Can’t read the USB flash drive? 4 steps to teach you how to easily find the USB mass storage device, select it, right-click, find Uninstall and put it away! Can’t read the USB flash drive? 4 steps to teach you how to solve the problem easily. Welcome to leave a message for discussion!

See all articles