![]() |
JPG or PNG to WebP converter simple class - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: External Resources (https://forum.codeigniter.com/forumdisplay.php?fid=7) +--- Forum: Addins (https://forum.codeigniter.com/forumdisplay.php?fid=13) +--- Thread: JPG or PNG to WebP converter simple class (/showthread.php?tid=90917) |
JPG or PNG to WebP converter simple class - rmcdahal - 05-21-2024 Encountered an issue with converting JPG or PNG images to WebP format during upload. I tried using the Intervention Image library and other libraries but got stuck. Below is a simple CodeIgniter 4 library class that converts a JPG or PNG image to WebP during upload and deletes the original uploaded file. Here is the code: PHP Code: <?php RE: JPG or PNG to WebP converter simple class - InsiteFX - 05-22-2024 Thanks for Sharing. RE: JPG or PNG to WebP converter simple class - luckmoshy - 05-22-2024 another simple approach PHP Code: if ($image->isValid() && !$image->hasMoved()) { RE: JPG or PNG to WebP converter simple class - warcooft - 05-22-2024 Thank you for sharing |