
#!c:/Perl/bin/perl
use ImagePwd;
$obj = ImagePwd->new(len=>6,color=>white, bgcolor=>black, height=>60, width=>280, fixed=>1, rot=>10,
quality=>128, cell=>0, f_min=>20);
$obj->fonts(['c:/WINNT/FONTS/times.TTF',
]);
# $obj->fonts(['kai.ttf']); # And more fonts for Unix/Linux users
$img = $obj->ImagePassword();
$| = 1;
binmode STDOUT;
print "Content-type: image/png\n\n";
print $img->Write('png:-');
Both now is my question has one of you guyes a example of a login screen working with this ? i dont knwo how i must both this in my login page :((
Yours