Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Captcha image Text Size

0 views
Skip to first unread message

Twayne

unread,
Apr 8, 2008, 1:17:29 PM4/8/08
to
Hi,

Learning PHP code; playing with various methods of generating captcha
codes:

In the code below, how would I change the size of the text displayed in
the captcha code?
Is it even possible with this method?
TIA,
Twayne

--------------------------
<?php

session_start();

$width = 120;

$height = 40;

$length = 5;

$baseList = '23456789abcdfghjkmnpqrstvwxyzABCDEFGHIJKLMNPQRSTUVWXYZ';

$code = "";

$counter = 0;

$image = @imagecreate($width, $height) or die('Cannot initialize GD!');

for( $i=0; $i<10; $i++ ) {

imageline($image,

mt_rand(0,$width), mt_rand(0,$height),

mt_rand(0,$width), mt_rand(0,$height),

imagecolorallocate($image, mt_rand(150,255),

mt_rand(150,255),

mt_rand(150,255)));

}

for( $i=0, $x=0; $i<$length; $i++ ) {

$actChar = substr($baseList, rand(0, strlen($baseList)-1), 1);

$x += 10 + mt_rand(0,10);

imagechar($image, mt_rand(3,5), $x, mt_rand(5,20), $actChar,

imagecolorallocate($image, mt_rand(0,155), mt_rand(0,155),
mt_rand(0,155)));

$code .= strtolower($actChar);

}


header('Content-Type: image/jpeg');

imagejpeg($image);

imagedestroy($image);

$_SESSION['securityCode'] = $code;

?>

\

---------------------------------


SrSilveira

unread,
Apr 8, 2008, 4:44:23 PM4/8/08
to

Michael Fesser

unread,
Apr 8, 2008, 5:44:26 PM4/8/08
to
.oO(Twayne)

>Learning PHP code; playing with various methods of generating captcha
>codes:

You should forget it. Graphical CAPTCHAs are a huge accessibility
problem and many of them are already broken and can be read by bots.
They are definitely _not_ a solution.

Micha

Krustov

unread,
Apr 8, 2008, 6:15:17 PM4/8/08
to
<comp.lang.php>
<Michael Fesser>
<Tue, 08 Apr 2008 23:44:26 +0200>
<ijpnv3p4b4b095cdo...@4ax.com>

What do you suggest as a alternative ? .


--
www.krustov.co.uk

Twayne

unread,
Apr 8, 2008, 9:11:23 PM4/8/08
to

1. Who said anything about USING captcha codes on a web site? Only
you, I'm afraid.

2. Interesting response, but I see you also had nothing positive to
offer and completely ignored the question, so I can only conclude that
you are one of the trolling hate mongers or control freaks that travel
the newsgroups.

3. I have to wonder if you're one of the ones that try to OCR the
captcha codes or something? Sounds like sour grapes somehow as opposed
to anything meaningful. Or were you simply bit by one of the apparently
many enemies you make over time?

4. Anyone who presupposes to know everything there is about anything
immediately loses their credibility. Congrats on doing a good job
there.


Twayne

unread,
Apr 8, 2008, 9:15:31 PM4/8/08
to

Thanks, I have that manual; it's a great reference and that's one way to
do it, for sure. What I'm really doing is going through a learning
process with PHP and the GD and using captcha for a subject. I have
about three different and excellent methods pulled together and I'm
trying to figure out how to use the best parts of each in one, new
method. Mostly noodling for the education.

Appreciate the comeback!
--
Regards,

Twayne

Open Office isn't just for wimps anymore;
OOo is a GREAT MS Office replacement
www.openoffice.org

rf

unread,
Apr 8, 2008, 9:33:56 PM4/8/08
to
"Twayne" <nob...@devnull.spamcop.net> wrote in news:%IUKj.4310$mL2.220
@trndny03:

>> .oO(Twayne)
>>
>>> Learning PHP code; playing with various methods of generating captcha
>>> codes:
>>
>> You should forget it. Graphical CAPTCHAs are a huge accessibility
>> problem and many of them are already broken and can be read by bots.
>> They are definitely _not_ a solution.
>>
>> Micha
>
> 1. Who said anything about USING captcha codes on a web site? Only
> you, I'm afraid.

Given that the vast majority of questions in this group relate to using
PHP to build web pages I would think the onus is on *you* to mention if
you are doing otherwise.


--
Richard
Killing all threads involving google groups
The Usenet Improvement Project: http://improve-usenet.org

Richard

unread,
Apr 8, 2008, 10:38:30 PM4/8/08
to

"rf" <r...@x.invalid> wrote in message
news:82VKj.7509$n8....@news-server.bigpond.net.au...

Ehm.... he DID mention that.
:-P
Richard.


rf

unread,
Apr 9, 2008, 1:20:59 AM4/9/08
to
"Richard" <root@localhost> wrote in news:47fc2c3d$0$30410$dbd4d001
@news.euronet.nl:

Perhaps you could indicate exactly in the above quoted thread where the
OP specifically stated that this was *not* for use in a publicly viewable
web site. In my experience people "learn PHP" by building their first web
page.

Piotr

unread,
Apr 9, 2008, 7:39:00 AM4/9/08
to
Krustov wrote:
>> They are definitely _not_ a solution.
>
> What do you suggest as a alternative ? .

Here are some nice suggestions
http://www.w3.org/TR/turingtest/

best regards
Piotr

Richard

unread,
Apr 9, 2008, 8:28:56 AM4/9/08
to

"rf" <r...@x.invalid> wrote in message
news:%mYKj.7579$n8....@news-server.bigpond.net.au...

I think you assume too much.


Richard.


Twayne

unread,
Apr 9, 2008, 12:41:27 PM4/9/08
to
> "Twayne" <nob...@devnull.spamcop.net> wrote in news:%IUKj.4310$mL2.220
> @trndny03:
>
>>> .oO(Twayne)
>>>
>>>> Learning PHP code; playing with various methods of generating
>>>> captcha codes:
>>>
>>> You should forget it. Graphical CAPTCHAs are a huge accessibility
>>> problem and many of them are already broken and can be read by bots.
>>> They are definitely _not_ a solution.
>>>
>>> Micha
>>
>> 1. Who said anything about USING captcha codes on a web site? Only
>> you, I'm afraid.
>
> Given that the vast majority of questions in this group relate to
> using PHP to build web pages I would think the onus is on *you* to
> mention if you are doing otherwise.


lol, I *said* I was playing with it. Whether i plan to use it or not
has little to do with anything else. Any thinking person answers a
question and THEN if there are some followons, adds them as maybe
caveats or ... .
Answering questions that aren't asked are signs of ego problems at
the other end, IMO. I wrote the post properly for what I wanted to ask
about.

Twayne


Twayne

unread,
Apr 9, 2008, 12:51:47 PM4/9/08
to


Good grief charley brown; I didn't say it wasn't for use in accessing a
nuclear reactor, nor for protecting anything, nor anything about a web
site, nor ... ... ... ... ... ... .
What you want and what you're going to get from people are two vastly
different things. I don't get why my playing with different methods of
accomplishing the same things captcha code can would piss you off. You
seem to actually be pissed that someone would use captcha code to learns
some things if they weren't going to use it for catpcha code on a web
site. That's interesting, to say the least.
I can just imagine your response if I hadn't mentioned "captcha" and
just said I was fiddling with this code and then showed it! There are
so many variations on how to create captcha code rectangles that it
makes for a great example of different ways todo things. Something I
suspect you are failing to recognize is that studying how others do
things is a great learning tool. I suppose I'm an "oddball" compared to
you since I actually KNOW what code does and if I don't, I try to learn
it and if I can't, I'll ask what appears to be a better authority then
my manuals etc. to figure it out. A forest is made of many trees; in
this case all you see is one forest, I think.

Cheers,

Twayne


Twayne

unread,
Apr 9, 2008, 12:57:42 PM4/9/08
to


Thanks; I had actually found that site already but I appreciate your
effort in posting it; many others will see it too and that's good. Lots
of good reverences there and also at w3c.

0 new messages