php jpg to webp method: 1. Create a PHP sample file; 2. Execute "$img->setImageFormat("webp");$img->writeImage("1.webp") ;" code is enough.
The operating environment of this article: Windows 7 system, PHP version 7.1, DELL G3 computer.
How to convert php jpg to webp?
Convert PHP pictures to webp format
Convert picture 1.jpg to 1 .webp, 1.jpg is the real address of the image
The code is as follows:
$img = new \Imagick("1.jpg"); $img->setImageFormat("webp"); $img->writeImage("1.webp");
Recommended learning: "PHP Video Tutorial"
The above is the detailed content of How to convert php jpg to webp. For more information, please follow other related articles on the PHP Chinese website!