CodeIgniter icon indicating copy to clipboard operation
CodeIgniter copied to clipboard

Add WebP and AVIF support

Open manusfreedom opened this issue 1 year ago • 2 comments

  • Add support for WebP and AVIF support
  • Use PHP IMAGETYPE_x constant
  • Remove WebP support from NetPBM

manusfreedom avatar Apr 22 '24 17:04 manusfreedom

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

tenzap avatar Apr 27 '24 06:04 tenzap

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..

manusfreedom avatar Apr 28 '24 10:04 manusfreedom