Jump to content

Captcha font


poep

Recommended Posts

Hi,

 

First of all i hope someone can help me i do not know about php so if you can help me i apreciate it a lot

the below code is a captcha code i want to be able to set my own font how can i do this? and is it possible to turn this into a png image with transparancy background?

 

<?php
session_start();
//$text = rand(1000000,9999999); 
$text = rand(10000,99999);
$_SESSION["vercode"] = $text;

$height = 17;
$width = 60;
 
$image_p = imagecreate($width, $height);
$black = imagecolorallocate($image_p,243,247,250);
$white = imagecolorallocate($image_p, 0, 0, 0);
$font_size = 8;
 
imagestring($image_p, $font_size, 5, 0, $text, $white);
imagejpeg($image_p, null,100);

?>

 

Link to comment
https://forums.phpfreaks.com/topic/281947-captcha-font/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.