123456789101112131415161718192021 |
- <?php
- namespace Grafika;
- /**
- * Class ImageType. Represent the different image types for GD and Imagick consistently.
- *
- * @package Grafika
- */
- class ImageType {
- const UNKNOWN = '';
- const GIF = 'GIF';
- const JPEG = 'JPEG';
- const PNG = 'PNG';
- const WBMP = 'WBMP';
- }
|