jpg takes up too much space and the web page is displayed too slowly. I want to convert the format to webp format. What functions do php have for format conversion?
曾经蜡笔没有小新2017-07-04 13:48:11
php-imagick
$im = new Imagick('your-file-path');
$im->setFormat('webp');
$im->writeImage('webp-file.webp');