gluon-web-remote

Web remote Administration for big size of gluon routers
git clone git://archive.git.mtrnord.blog/MTRNord/gluon-web-remote.git
Log | Files | Refs | README

CaptchaBuilderInterface.php (466B)


      1 <?php
      2 
      3 namespace Gregwar\Captcha;
      4 
      5 /**
      6  * A Captcha builder
      7  */
      8 interface CaptchaBuilderInterface
      9 {
     10     /**
     11      * Builds the code
     12      */
     13     public function build($width, $height, $font, $fingerprint);
     14 
     15     /**
     16      * Saves the code to a file
     17      */
     18     public function save($filename, $quality);
     19 
     20     /**
     21      * Gets the image contents
     22      */
     23     public function get($quality);
     24 
     25     /**
     26      * Outputs the image
     27      */
     28     public function output($quality);
     29 }
     30