The making of digital verification code

Source: Internet
Author: User

<?php
English verification code is relatively simple, do not make hex processing, directly with the color value is OK. If
Session_Start ();
function Rand_create ()
{
Notifies the browser that a PNG image will be exported
Header ("Content-type:image/png");
Get the random number generator seed ready.
Srand (Double) microtime () *1000000);
Prepare the relevant parameters for the picture
$im = Imagecreate (62,22);
$black = Imagecolorallocate ($im, 0,0,0); RGB Black Identifier
$white = Imagecolorallocate ($im, 255,255,255); RGB White Identifier
$gray = Imagecolorallocate ($im, 200,200,200); RGB Gray Identifiers
Start drawing
Imagefill ($im, 0,0, $gray);
while (($randval =rand ()%100000) <10000); {
$_session["Auth_code"] = $randval;
Drawing a four-bit integer verification code into a picture
Imagestring ($im, 5, 3, $randval, $black);
}
adding interfering pixels
for ($i =0; $i <200; $i + +) {
$randcolor = Imagecolorallocate ($im, Rand (0,255), Rand (0,255), Rand (0,255));
Imagesetpixel ($im, Rand ()%70, Rand ()%30, $randcolor);
}
Output validation Picture
Imagepng ($im);
Destroy image identifiers
Imagedestroy ($im);
}
Rand_create ();
?>

The making of digital verification code

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.