[PHP类]使用PHP将JPEG和PNG转换为WebP

这个库允许你用PHP进行webp转换。它支持大量的转换方法,并自动选择系统上可用的最有能力的方法。

安装

需要使用Composer的库,如下所示:

composer require rosell-dk/webp-convert

将图像转换

下面是一个使用WebPConvert::convert方法进行转换的最小示例:

// Initialise your autoloader (this example is using Composer)
require 'vendor/autoload.php';

use WebPConvert\WebPConvert;

$source = __DIR__ . '/logo.jpg';
$destination = $source . '.webp';
$options = [];
WebPConvert::convert($source, $destination, $options);
© copyright statement
THE END
If you like it, support it.
kudos6 share (joys, benefits, privileges etc) with others
commentaries sofa-buying

Please log in to post a comment

    No comments