Current Path :
/
home
/
develito
/
www
/
libraries
/
sobi
/
ThirdParty
/
Grafika
/
Or
Select Your Path :
Upload File :
New :
File
Dir
/home/develito/www/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'; }