Ekstensi: WebP

Dari Catatan Pak Samsul
Revisi sejak 13 Februari 2021 04.44 oleh Samsul (bicara | kontrib)
Loncat ke navigasi Loncat ke pencarian

The WebP perpanjangan menciptakan .webpversi gambar yang sudah diupload dan menampilkan mereka, jika browser mendukung meminta WebP gambar.

Ekstensi ini membutuhkan imagickdan libwebpdiinstal di server.

Ekstensi: WebP


Aktiifkan ekstensi WebP

wfLoadExtension ( 'WebP' );

// Enables WebP creation after a new image was uploaded

$wgWebPEnableConvertOnUpload = true;

// Enables WebP creation after a thumbnail was created

$wgWebPEnableConvertOnTransform = true;

// Compression quality of the image: 0 - 100 where 100 means most compressed

$wgWebPCompressionQuality = 50;

// the strength of the deblocking filter, between 0 (no filtering) and 100 (maximum filtering). A value of 0 turns off any filtering. Higher values increase the strength of the filtering process applied after decoding the image. The higher the value, the smoother the image appears. Typical values are usually in the range of 20 to 50.

$wgWebPFilterStrength = 50;

// when enabled, the algorithm spends additional time optimizing the filtering strength to reach a well-balanced quality.

$wgWebPAutoFilter = true;

// Create images through the JobQueue

$wgWebPConvertInJobQueue = true;

// Thumbnail Sizes to create through the maintenance script

$wgWebPThumbSizes = [

   120,

   320,

   800,

   1200,

   1600

];

Eksekusi script dibawah ini jika sebelumnya telah melakukan upload gambar sebelum melakukan install WebP Extension.

php extensions/WebP/maintenance/convert_images.php

  1. To only convert non-thumbnails run

php extensions/WebP/maintenance/convert_images.php --no-thumbs

  1. To create thumbnails of custom sizes run
  1. This will create two thumbnails with size 1000px and 1250px

php extensions/WebP/maintenance/convert_images.php --thumb-sizes=1000,1250

  1. To only work on some images run

php extensions/WebP/maintenance/convert_images.php --titles=ImageA.jpg,ImageB.png

  1. To force the creation of already existing images run

php extensions/WebP/maintenance/convert_images.php --overwrite

  1. Only work on page titles matching a prefix
  1. Every page starting with prefix 'Example' will be selected

php extensions/WebP/maintenance/convert_images.php --title-prefix=Example

  1. Only work on page titles matching a file-type
  1. Every page starting with file-type 'png' will be selected
  1. Can be combined with 'title-prefix'

php extensions/WebP/maintenance/convert_images.php --file-type=png

Katagori : Mediawiki