Размер файла: 648B
<?
session_start();
$_SESSION['pswd']=rand(10000,9999999);
$pswd_arr=str_split($_SESSION['pswd']); // заносим в массив
list(, , $type,)=@getimagesize("1.jpg");
if ($type==1) {$funci="imagecreatefromgif";} //$funco="imagegif";}
if ($type==2) {$funci="imagecreatefromjpeg";} //$funco="imagejpeg";}
$im1 = @$funci("1.jpg");
$x=1;
for ($i=0;$i<=count($pswd_arr)-1;$i++)
{
$y=rand(-2,10);
$R=rand(0,18);
$G=rand(0,50);
$B=rand(0,100);
$black = ImagecolorAllocate($im1,$R,$G,$B);
ImageString ($im1, 4, $x, $y, $pswd_arr[$i],$black);
$x=$x+rand(8,14);
}
@header("Content-type: image/png");
@imagepng($im1);
?>