当前位置: 首页>>代码示例>>PHP>>正文


PHP PhpCaptcha::SetMinFontSize方法代码示例

本文整理汇总了PHP中PhpCaptcha::SetMinFontSize方法的典型用法代码示例。如果您正苦于以下问题:PHP PhpCaptcha::SetMinFontSize方法的具体用法?PHP PhpCaptcha::SetMinFontSize怎么用?PHP PhpCaptcha::SetMinFontSize使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在PhpCaptcha的用法示例。


在下文中一共展示了PhpCaptcha::SetMinFontSize方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: array

    return;
}
if ($mode == 'captcha') {
    $verification_id = $_REQUEST['verification_id'];
    if (empty($verification_id)) {
        $verification_id = 'common';
    }
    $verification_settings = Settings::instance()->getValues('Image_verification');
    $fonts = array(Registry::get('config.dir.lib') . 'other/captcha/verdana.ttf');
    $c = new PhpCaptcha($verification_id, $fonts, $verification_settings['width'], $verification_settings['height']);
    // Set string length
    $c->SetNumChars($verification_settings['string_length']);
    // Set number of distortion lines
    $c->SetNumLines($verification_settings['lines_number']);
    // Set minimal font size
    $c->SetMinFontSize($verification_settings['min_font_size']);
    // Set maximal font size
    $c->SetMaxFontSize($verification_settings['max_font_size']);
    $c->SetGridColour($verification_settings['grid_color']);
    if ($verification_settings['char_shadow'] == 'Y') {
        $c->DisplayShadow(true);
    }
    if ($verification_settings['colour'] == 'Y') {
        $c->UseColour(true);
    }
    if ($verification_settings['string_type'] == 'digits') {
        $c->SetCharSet(array(2, 3, 4, 5, 6, 8, 9));
    } elseif ($verification_settings['string_type'] == 'letters') {
        $c->SetCharSet(range('A', 'F'));
    } else {
        $c->SetCharSet(fn_array_merge(range('A', 'F'), array(2, 3, 4, 5, 6, 8, 9), false));
开发者ID:heg-arc-ne,项目名称:cscart,代码行数:31,代码来源:image.php

示例2: array

<?php

require 'php-captcha.inc.php';
$fonts = array('fonts/VeraBd.ttf', 'fonts/VeraIt.ttf', 'fonts/Vera.ttf');
$captcha = new PhpCaptcha($fonts, 140, 50);
//$captcha->SetBackgroundImages('images/captcha.jpg');
$captcha->setNumChars(4);
$captcha->SetNumLines(80);
$captcha->UseColour(true);
//$captcha->DisplayShadow(true);
$captcha->SetMinFontSize(13);
$captcha->SetMaxFontSize(19);
$captcha->SetCharSet('A-Z,1-9');
$captcha->Create();
开发者ID:gambric,项目名称:ceramichesofia,代码行数:14,代码来源:captcha.php

示例3: array

<?php

////////////////////////////////////////////////////////////////////////////
//
// (c) phpChess Limited, 2004-2006, in association with Goliath Systems.
// All rights reserved. Please observe respective copyrights.
// phpChess - Chess at its best
// you can find us at http://www.phpchess.com.
//
////////////////////////////////////////////////////////////////////////////
require 'php-captcha.inc.php';
// define fonts
$aFonts = array('fonts/VeraBd.ttf');
// create new image
$oPhpCaptcha = new PhpCaptcha($aFonts, 150, 30);
$oPhpCaptcha->SetBackgroundImages('val.jpg');
$oPhpCaptcha->SetWidth(150);
$oPhpCaptcha->SetHeight(30);
$oPhpCaptcha->SetNumChars(5);
$oPhpCaptcha->SetMinFontSize(10);
$oPhpCaptcha->SetMinFontSize(12);
$oPhpCaptcha->UseColour(True);
$oPhpCaptcha->DisplayShadow(False);
$oPhpCaptcha->SetNumLines(250);
$oPhpCaptcha->Create();
开发者ID:robertohernando,项目名称:phpchess,代码行数:25,代码来源:img_validate.php

示例4: array

 */
include_once 'core/config.php';
if (defined(C_CAPTCHA_ENABLE) && C_CAPTCHA_ENABLE == 'true') {
    include_once 'core/3rdparty/captcha/php-captcha.inc.php';
    $fonts = 'core/3rdparty/captcha/fonts/';
    $aFonts = array($fonts . 'VeraBd.ttf', $fonts . 'VeraIt.ttf', $fonts . 'Vera.ttf');
    $captcha = new PhpCaptcha($aFonts, 200, 60);
    //Set user options
    $captcha->SetWidth(C_CAPTCHA_WIDTH);
    $captcha->SetHeight(C_CAPTCHA_HEIGHT);
    $captcha->SetNumChars(C_CAPTCHA_CHARACTERS);
    $captcha->SetNumLines(C_CAPTCHA_LINES);
    if (C_CAPTCHA_ENABLE_SHADOWS === 'true') {
        $captcha->DisplayShadow(true);
    }
    if (C_CAPTCHA_OWNER_TEXT === 'true') {
        $captcha->SetOwnerText(BLOGURL);
    }
    $captcha->SetCharSet(C_CAPTCHA_CHARACTER_SET);
    if (C_CAPTCHA_CASE_INSENSITIVE === 'true') {
        $captcha->CaseInsensitive(true);
    }
    //$captcha->SetEdith(C_CAPTCHA_WIDTH);
    $captcha->SetMinFontSize(C_CAPTCHA_MIN_FONT);
    $captcha->SetMaxFontSize(C_CAPTCHA_MAX_FONT);
    if (C_CAPTCHA_USE_COLOR === 'true') {
        $captcha->UseColour(true);
    }
    $captcha->SetFileType(C_CAPTCHA_GRAPHIC_TYPE);
    $captcha->Create();
}
开发者ID:BackupTheBerlios,项目名称:loquacity-svn,代码行数:31,代码来源:visualcaptcha.php

示例5: array

<?php

/**
 * CAPTCHA image creator
 *
 * @see : http://www.ejeliot.com/pages/2
 */
// include captcha class
require 'php-captcha.inc.php';
// define fonts
$aFonts = array('fonts/VeraSeBd.ttf', 'fonts/VeraSe.ttf', 'fonts/VeraBd.ttf');
// create new image
$aPhpCaptcha = new PhpCaptcha($aFonts, 200, 50);
$aPhpCaptcha->SetBackgroundImages('images/beach.jpg');
$aPhpCaptcha->UseColour(true);
$aPhpCaptcha->SetMinFontSize(12);
//$aPhpCaptcha->SetFileType('png');
//$aPhpCaptcha->SetNumChars(6);
//$aPhpCaptcha->SetOwnerText('CAPTCHA Code');
$aPhpCaptcha->Create();
开发者ID:kaz6120,项目名称:Loggix,代码行数:20,代码来源:captcha-image.php


注:本文中的PhpCaptcha::SetMinFontSize方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。