PHP code example of sujan97825 / laravel-webp-converter
1. Go to this page and download the library: Download sujan97825/laravel-webp-converter library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
sujan97825 / laravel-webp-converter example snippets
$file = $request->file("image"); //Request File
$filename="abc"; //Image Name
$location="assets/images/"; //Image Upload Location
$width=500; // Image Width,If You Want To Resize.Default Null.
$height=250; // Image Height,If You Want To Resize.Default Null.
$quality=100 //Image Quality Can Be Used [ 1-100 ],Default 100.
return [
/*
|--------------------------------------------------------------------------
| Default Image Quality
|--------------------------------------------------------------------------
|
| Default 100, image quality can be used [1-100]
|
*/
'quality' => 100,
];
sh
php artisan vendor:publish --provider="Sujan\LaravelWebpConverter\WebpConverterServiceProvider"
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.