Your IP : 216.73.216.85


Current Path : /home/smartconb/www/armencom33/libraries/sobi/ThirdParty/Grafika/
Upload File :
Current File : /home/smartconb/www/armencom33/libraries/sobi/ThirdParty/Grafika/ImageType.php

<?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';

    const WEBP = 'WEBP';
}