bcit-ci / CodeIgniter

Open Source PHP Framework (originally from EllisLab)
https://codeigniter.com/
MIT License
18.27k stars 7.6k forks source link

Add WebP and AVIF support #6279

Open manusfreedom opened 7 months ago

manusfreedom commented 7 months ago
tenzap commented 7 months ago

will this work for users running php < 7.1 (eg. php 5.6) ? ci3 still supports these PHP old versions. IMAGETYPE_AVIF constant doesn't seem known by php 5 https://php-legacy-docs.zend.com/manual/php5/en/function.exif-imagetype

manusfreedom commented 6 months ago

This is not supported in PHP 5.x, so for them you need to add a defined('IMAGETYPE_AVIF') OR define('IMAGETYPE_AVIF', 19); in constant.php..