Ekstensi: WebP: Perbedaan antara revisi
(←Membuat halaman berisi 'The '''WebP''' perpanjangan menciptakan <code>.webp</code>versi gambar yang sudah diupload dan menampilkan mereka, jika browser mendukung meminta WebP gambar. Ekstens...') |
kTidak ada ringkasan suntingan |
||
(4 revisi perantara oleh pengguna yang sama tidak ditampilkan) | |||
Baris 3: | Baris 3: | ||
Ekstensi ini membutuhkan <code>imagick</code>dan <code>libwebp</code>diinstal di server. | Ekstensi ini membutuhkan <code>imagick</code>dan <code>libwebp</code>diinstal di server. | ||
Download dan install | |||
https://github.com/octfx/mediawiki-extension-WebP | |||
<blockquote>'''Aktiifkan ekstensi WebP''' | |||
< | <code>wfLoadExtension ( 'WebP' );</code> | ||
// Enables WebP creation after a new image was uploaded | ''// Enables WebP creation after a new image was uploaded'' | ||
$wgWebPEnableConvertOnUpload = true; | <code>$wgWebPEnableConvertOnUpload = true;</code> | ||
// Enables WebP creation after a thumbnail was created | ''// Enables WebP creation after a thumbnail was created'' | ||
$wgWebPEnableConvertOnTransform = true; | <code>$wgWebPEnableConvertOnTransform = true;</code> | ||
// Compression quality of the image: 0 - 100 where 100 means most compressed | /''/ Compression quality of the image: 0 - 100 where 100 means most compressed'' | ||
$wgWebPCompressionQuality = 50; | <code>$wgWebPCompressionQuality = 50;</code> | ||
// 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. | ''// 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; | <code>$wgWebPFilterStrength = 50;</code> | ||
// when enabled, the algorithm spends additional time optimizing the filtering strength to reach a well-balanced quality. | ''// when enabled, the algorithm spends additional time optimizing the filtering strength to reach a well-balanced quality.'' | ||
$wgWebPAutoFilter = true; | <code>$wgWebPAutoFilter = true;</code> | ||
// Create images through the JobQueue | ''// Create images through the JobQueue'' | ||
$wgWebPConvertInJobQueue = true; | <code>$wgWebPConvertInJobQueue = true;</code> | ||
// Thumbnail Sizes to create through the maintenance script | ''// Thumbnail Sizes to create through the maintenance script'' | ||
$wgWebPThumbSizes = [ | <code>$wgWebPThumbSizes = [</code> | ||
120, | <code> 120,</code> | ||
320, | <code> 320,</code> | ||
800, | <code> 800,</code> | ||
1200, | <code> 1200,</code> | ||
1600 | <code> 1600</code> | ||
];</blockquote> | <code>];</code></blockquote> | ||
==== Eksekusi script dibawah ini jika sebelumnya telah melakukan upload gambar sebelum melakukan install WebP Extension. ==== | ====Eksekusi script dibawah ini jika sebelumnya telah melakukan upload gambar sebelum melakukan install WebP Extension.==== | ||
<blockquote>php extensions/WebP/maintenance/convert_images.php | <blockquote><code>php extensions/WebP/maintenance/convert_images.php</code> | ||
''To only convert non-thumbnails run'' | |||
php extensions/WebP/maintenance/convert_images.php --no-thumbs | <code>php extensions/WebP/maintenance/convert_images.php --no-thumbs</code> | ||
''To create thumbnails of custom sizes run'' | |||
''This will create two thumbnails with size 1000px and 1250px'' | |||
php extensions/WebP/maintenance/convert_images.php --thumb-sizes=1000,1250 | <code>php extensions/WebP/maintenance/convert_images.php --thumb-sizes=1000,1250</code> | ||
''To only work on some images run'' | |||
php extensions/WebP/maintenance/convert_images.php --titles=ImageA.jpg,ImageB.png | <code>php extensions/WebP/maintenance/convert_images.php --titles=ImageA.jpg,ImageB.png</code> | ||
''To force the creation of already existing images run'' | |||
php extensions/WebP/maintenance/convert_images.php --overwrite | <code>php extensions/WebP/maintenance/convert_images.php --overwrite</code> | ||
''Only work on page titles matching a prefix'' | |||
''Every page starting with prefix 'Example' will be selected'' | |||
php extensions/WebP/maintenance/convert_images.php --title-prefix=Example | <code>php extensions/WebP/maintenance/convert_images.php --title-prefix=Example</code> | ||
Only work on page titles matching a file-type | |||
Every page starting with file-type 'png' will be selected | |||
Can be combined with 'title-prefix' | |||
php extensions/WebP/maintenance/convert_images.php --file-type=png</blockquote> | <code>php extensions/WebP/maintenance/convert_images.php --file-type=png</code></blockquote> | ||
Catagory : Mediawiki |
Revisi terkini sejak 13 Februari 2021 04.57
The WebP perpanjangan menciptakan .webp
versi gambar yang sudah diupload dan menampilkan mereka, jika browser mendukung meminta WebP gambar.
Ekstensi ini membutuhkan imagick
dan libwebp
diinstal di server.
Download dan install
https://github.com/octfx/mediawiki-extension-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
To only convert non-thumbnails run
php extensions/WebP/maintenance/convert_images.php --no-thumbs
To create thumbnails of custom sizes run
This will create two thumbnails with size 1000px and 1250px
php extensions/WebP/maintenance/convert_images.php --thumb-sizes=1000,1250
To only work on some images run
php extensions/WebP/maintenance/convert_images.php --titles=ImageA.jpg,ImageB.png
To force the creation of already existing images run
php extensions/WebP/maintenance/convert_images.php --overwrite
Only work on page titles matching a prefix
Every page starting with prefix 'Example' will be selected
php extensions/WebP/maintenance/convert_images.php --title-prefix=Example
Only work on page titles matching a file-type
Every page starting with file-type 'png' will be selected
Can be combined with 'title-prefix'
php extensions/WebP/maintenance/convert_images.php --file-type=png
Catagory : Mediawiki