├── LICENSE ├── composer.json ├── composer.lock └── lib ├── FastImageSize.php └── Type ├── TypeBase.php ├── TypeBmp.php ├── TypeGif.php ├── TypeIco.php ├── TypeIff.php ├── TypeInterface.php ├── TypeJp2.php ├── TypeJpeg.php ├── TypePng.php ├── TypePsd.php ├── TypeTif.php ├── TypeWbmp.php └── TypeWebp.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marc1706/fast-image-size/HEAD/LICENSE -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marc1706/fast-image-size/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marc1706/fast-image-size/HEAD/composer.lock -------------------------------------------------------------------------------- /lib/FastImageSize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marc1706/fast-image-size/HEAD/lib/FastImageSize.php -------------------------------------------------------------------------------- /lib/Type/TypeBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marc1706/fast-image-size/HEAD/lib/Type/TypeBase.php -------------------------------------------------------------------------------- /lib/Type/TypeBmp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marc1706/fast-image-size/HEAD/lib/Type/TypeBmp.php -------------------------------------------------------------------------------- /lib/Type/TypeGif.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marc1706/fast-image-size/HEAD/lib/Type/TypeGif.php -------------------------------------------------------------------------------- /lib/Type/TypeIco.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marc1706/fast-image-size/HEAD/lib/Type/TypeIco.php -------------------------------------------------------------------------------- /lib/Type/TypeIff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marc1706/fast-image-size/HEAD/lib/Type/TypeIff.php -------------------------------------------------------------------------------- /lib/Type/TypeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marc1706/fast-image-size/HEAD/lib/Type/TypeInterface.php -------------------------------------------------------------------------------- /lib/Type/TypeJp2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marc1706/fast-image-size/HEAD/lib/Type/TypeJp2.php -------------------------------------------------------------------------------- /lib/Type/TypeJpeg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marc1706/fast-image-size/HEAD/lib/Type/TypeJpeg.php -------------------------------------------------------------------------------- /lib/Type/TypePng.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marc1706/fast-image-size/HEAD/lib/Type/TypePng.php -------------------------------------------------------------------------------- /lib/Type/TypePsd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marc1706/fast-image-size/HEAD/lib/Type/TypePsd.php -------------------------------------------------------------------------------- /lib/Type/TypeTif.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marc1706/fast-image-size/HEAD/lib/Type/TypeTif.php -------------------------------------------------------------------------------- /lib/Type/TypeWbmp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marc1706/fast-image-size/HEAD/lib/Type/TypeWbmp.php -------------------------------------------------------------------------------- /lib/Type/TypeWebp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marc1706/fast-image-size/HEAD/lib/Type/TypeWebp.php --------------------------------------------------------------------------------