summaryrefslogtreecommitdiffstats
path: root/system/helpers/captcha_helper.php
diff options
context:
space:
mode:
authorPreetham <preems@Preethams-MacBook-Pro.local>2014-11-12 04:49:43 +0100
committerPreetham <preems@Preethams-MacBook-Pro.local>2014-11-12 04:49:43 +0100
commit692e7967d48c67f28f52da6051e4715a6d891b5a (patch)
tree081b9fb8d085561b5ba6d311a06cd5cf82b1c9b4 /system/helpers/captcha_helper.php
parent81c934729d9fcbb294a8914608c315eed30ff9c4 (diff)
Fix #656 add font_size in create_captcha()
Diffstat (limited to 'system/helpers/captcha_helper.php')
-rw-r--r--system/helpers/captcha_helper.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/system/helpers/captcha_helper.php b/system/helpers/captcha_helper.php
index 5d023b28c..8c2cfa43e 100644
--- a/system/helpers/captcha_helper.php
+++ b/system/helpers/captcha_helper.php
@@ -71,6 +71,7 @@ if ( ! function_exists('create_captcha'))
'font_path' => '',
'expiration' => 7200,
'word_length' => 8,
+ 'font_size' =>16,
'pool' => '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ',
'colors' => array(
'background' => array(255,255,255),
@@ -193,13 +194,13 @@ if ( ! function_exists('create_captcha'))
$use_font = ($font_path !== '' && file_exists($font_path) && function_exists('imagettftext'));
if ($use_font === FALSE)
{
- $font_size = 5;
+ $font_size = $font_size>5?5:$font_size;
$x = mt_rand(0, $img_width / ($length / 3));
$y = 0;
}
else
{
- $font_size = 16;
+ $font_size = $font_size>30?30:$font_size;
$x = mt_rand(0, $img_width / ($length / 1.5));
$y = $font_size + 2;
}