phpfv.com / image-compress
v5.0
2021-07-05 03:27 UTC
Requires
- php: >=7.0
This package is not auto-updated.
Last update: 2025-07-01 21:01:45 UTC
README
use lipengwei\image\ImageCompress;
public function image()
{
$src = "static/5f16b2ec8f908.webp";
$im = new ImageCompress($src,0.8); // 等比缩放0.8,可以为 1 不缩放。
$im->compressImg("static/5f16b2ec8f908_1.webp"); // 保存图片
return 1;
}