You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
465 B
29 lines
465 B
<?php
|
|
|
|
namespace Gregwar\Captcha;
|
|
|
|
/**
|
|
* A Captcha builder
|
|
*/
|
|
interface CaptchaBuilderInterface
|
|
{
|
|
/**
|
|
* Builds the code
|
|
*/
|
|
public function build($width, $height, $font, $fingerprint);
|
|
|
|
/**
|
|
* Saves the code to a file
|
|
*/
|
|
public function save($filename, $quality);
|
|
|
|
/**
|
|
* Gets the image contents
|
|
*/
|
|
public function get($quality);
|
|
|
|
/**
|
|
* Outputs the image
|
|
*/
|
|
public function output($quality);
|
|
}
|
|
|