ILIAS  release_4-3 Revision
 All Data Structures Namespaces Files Functions Variables Groups Pages
class.ilSecurImage.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2011 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 include_once("./Services/Captcha/classes/class.ilSecurImageUtil.php");
5 
14 {
21  function __construct()
22  {
24  $this->securimage = new Securimage();
25  if (!function_exists("imagettftext"))
26  {
27  $this->securimage->use_gd_font = true;
28  $this->securimage->num_lines = 5;
29  }
30  }
31 
35  function check($a_input)
36  {
37  return $this->securimage->check($a_input);
38  }
39 
46  function showImage()
47  {
49  $this->securimage->show();
50  }
51 
52 }
53 ?>