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

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

使用PHP将JPEG和PNG转换.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);
© 版权声明
THE END
喜欢就支持一下吧
点赞6 分享
评论 抢沙发

请登录后发表评论

    blank

    暂无评论内容