Php – How to prevent Laravel Image::make converting gif to PNG
After uploading image I'm making one thumbnail image its work fine with PNG and jpg but when I upload gif image by default its get converted to PNG, how can I prevent this? Here is my code $img = Image::make(storage_path().'/app/public/images/'.$this->folderRoot.'/'.$this->imageName);…