PHP code example of lloricode / spatie-image-optimizer-health-check
1. Go to this page and download the library: Download lloricode/spatie-image-optimizer-health-check 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/ */
lloricode / spatie-image-optimizer-health-check example snippets
use Lloricode\SpatieImageOptimizerHealthCheck\ImageOptimizerCheck;
use Spatie\Health\Facades\Health;
# all optimizer
Health::checks([
ImageOptimizerCheck::new(),
]);
# specific optimizer
use Lloricode\SpatieImageOptimizerHealthCheck\Optimizer;
Health::checks([
ImageOptimizerCheck::new()
->addChecks(Optimizer::JPEGOPTIM),
]);
# multiple
Health::checks([
ImageOptimizerCheck::new()
->addChecks([
Optimizer::JPEGOPTIM,
Optimizer::OPTIPNG,
Optimizer::PNGQUANT,
Optimizer::SVGO,
Optimizer::GIFSICLE,
Optimizer::WEBP,
]),
]);