Welcome Guest, Not a member yet? Register   Sign In
How to convert an image to WEBP mime type in CI?
#1

(This post was last modified: 10-20-2022, 12:47 PM by luckmoshy.)

Hi all! may someone help me with this issue, please!!

PHP Code:
public function createFile()
    {
 
  $file $this->request->getFile('image');

 

 \
Config\Services::image()->withFile($file)
 ->
convert(IMAGETYPE_WEBP)//it does not convert to real WEBP instead jpeg WHY?
 
->fit(300300'center')
 ->
save(FCPATH .'/image/'.$saveFile->store());

            $data=[
 
  'image'=> $saveFile
 
]; 
 
$model->save($data);
 } 
Codeigniter First, Codeigniter Then You!!
yekrinaDigitals

Reply


Messages In This Thread
How to convert an image to WEBP mime type in CI? - by luckmoshy - 10-20-2022, 07:01 AM



Theme © iAndrew 2016 - Forum software by © MyBB