<?php
header('Content-Type:image/jpeg');
$img
= imagecreatetruecolor(100, 40);
$black
= imagecolorallocate(
$img
, 0x00, 0x00, 0x00);
$green
= imagecolorallocate(
$img
, 0x00, 0xFF, 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) ,
$green
);
}
imagepng(
$img
);
imagedestroy(
$img
);
?>