| 1 | <?php |
||
| 8 | class ImageException extends \Exception |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Generate an image with the message printed. Use always the Gd library. |
||
| 12 | * |
||
| 13 | * @param int $width Width of the image |
||
| 14 | * @param int $height Height of the image |
||
| 15 | * |
||
| 16 | * @return Image |
||
| 17 | */ |
||
| 18 | public function getImage($width = 400, $height = 400) |
||
| 29 | } |
||
| 30 |