XOOPS 2.5.6  Final
 All Classes Namespaces Files Functions Variables Pages
config.image.php
Go to the documentation of this file.
1 <?php
23 defined('XOOPS_ROOT_PATH') or die('Restricted access');
24 
25 return $config = array(
26  'num_chars' => 6, // Maximum characters
27  'casesensitive' => false, // Characters in image mode is case-sensitive
28  'fontsize_min' => 10, // Minimum font-size
29  'fontsize_max' => 24, // Maximum font-size
30  'background_type' => 0, // Background type in image mode: 0 - bar; 1 - circle; 2 - line; 3 - rectangle; 4 - ellipse; 5 - polygon; 100 - generated from files
31  'background_num' => 50, // Number of background images to generate
32  'polygon_point' => 3,
33  'skip_characters' => array(
34  'o',
35  '0',
36  'i',
37  'l',
38  '1')); // characters that should not be used
39 
40 ?>