1分钟部署网站📞AI智能客服,大模型训练自有数据,简单好用,有效降低客服成本 广告
```php /** * 图片压缩 * * @param [type] $filename * @return void */ function zlib($filename) { $ext = substr(strrchr($filename, '.'), 1); if ($ext == 'png' || $ext == 'jpg' || $ext == 'jpeg' || $ext == 'bmp' || $ext == 'gif') { ini_set("memory_limit", "256M"); //修改php分配的内存 $percent = 1; // 内容类型 header('Content-Type: image/jpeg'); // 获取新的尺寸 list($width, $height) = getimagesize($filename); $new_width = $width; //* $percent; $new_height = $height; //* $percent; // 重新取样 $image_p = imagecreatetruecolor($new_width, $new_height); $image = imagecreatefromstring(file_get_contents($filename)); imagecopyresampled($image_p, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height); // 输出 imagejpeg($image_p, $filename, 70); } } ```