How to convert jpg to webp format in php
扔个三星炸死你
扔个三星炸死你 2017-07-04 13:46:11
0
1
1181

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?

扔个三星炸死你
扔个三星炸死你

reply all(1)
曾经蜡笔没有小新

php-imagick


$im = new Imagick('your-file-path');
$im->setFormat('webp');
$im->writeImage('webp-file.webp');
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template