这个库允许你用PHP进行webp转换。它支持大量的转换方法,并自动选择系统上可用的最有能力的方法。
![[PHP类]使用PHP将JPEG和PNG转换为WebP插图 使用PHP将JPEG和PNG转换.WebP](https://www.snswm.com/wp-content/uploads/2024/07/d2b5ca33bd20240701222148-1024x568.png)
安装
需要使用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
暂无评论内容