一个700kb的png图片给我压缩成720kb了 有大佬给提示吗
$file_path = Db::name('attachment')->where('id',$id)->find();
$file_path['path'] =ltrim(parse_url($file_path['path'],PHP_URL_PATH),'/');
if (isset($file_path['path'])) {
$real_path = realpath($file_path['path']);
$image = \think\Image::open($real_path);
$image->save($real_path,null,80);
}
$this->success('图片压缩成功');
最佳答案