showpro/silverstripe-seo-images

Automaticly optimise and generates WebP images of all uploaded & resampled images in SilverStripe

Installs: 518

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 3

Forks: 1

Open Issues: 3

Type:silverstripe-vendormodule

1.0.0 2020-05-18 20:47 UTC

This package is auto-updated.

Last update: 2024-03-19 05:01:16 UTC


README

This Module is Ralph Slooten's axllent/silverstripe-image-optimiser with a module to generate WebP images of all optimized images.

This module automatically optimise, compress and generates an WebP images from both uploaded as well as any resampled (cropped, scaled etc) images in SilverStripe.

Images (JPG, PNG & GIF) are automatically optimised, provided you have the correct binaries installed (see "Installation" below) and it also generates WebP images for all optimized and compressed (JPG & PNG) images. It also adds More Information about webp images https://developers.google.com/speed/webp/

The module overrides the default FlysystemAssetStore to first optimise the image before adding the image to the store, then if the image is a JPG or PNG it will create a WebP image. It works transparently.

Requirements

Optimisation tools

The module uses spatie/image-optimizer and will use the following optimisers if they are both present and in your default path on your system:

WebP creation tools

The module uses rosell-dk/webp-convert to generate WebP images. The library can convert using the following methods:

Installation

composer require showpro/silverstripe-seo-images

Installing the utilities on Ubuntu:

sudo apt-get install jpegoptim optipng pngquant gifsicle

Installing the utilities on Alpine Linux:

apk add jpegoptim optipng pngquant gifsicle

Usage

Assuming you have the necessary binaries installed, it should "just work" with the default settings once you have flushed your SilverStripe installation.