ImageType.php 291 B

123456789101112131415161718192021
  1. <?php
  2. namespace Grafika;
  3. /**
  4. * Class ImageType. Represent the different image types for GD and Imagick consistently.
  5. *
  6. * @package Grafika
  7. */
  8. class ImageType {
  9. const UNKNOWN = '';
  10. const GIF = 'GIF';
  11. const JPEG = 'JPEG';
  12. const PNG = 'PNG';
  13. const WBMP = 'WBMP';
  14. }