800) { $newWidth = 800; $newHeight = ceil((800 * $height) / $width); $preFileName = stringUtil::uniqueFileName(); $newFile = $preFileName . ".{$type}"; $newFullPathFile = $path . $newFile; Image::thumbnail($fullPathFile, $newWidth, $newHeight)->save($newFullPathFile, ['quality' => 100]); $width = $newWidth; $height = $newHeight; $img = "uploads/{$sjId}/{$month}/{$date}/" . $newFile; unlink($fullPathFile); $fullPathFile = $newFullPathFile; } //上传oss 2021.3.18 lqh oss::uploadImage($img,$fullPathFile); //生成小图 200px //$smallWidth = 200; //$smallHeight = ceil((200 * $height) / $width); //$smallFullPathFile = $path . $preFileName . '_small.' . $type; //Image::thumbnail($fullPathFile, $smallWidth, $smallHeight)->save($smallFullPathFile, ['quality' => 100]); $data = business::formatUploadImg($img); $data['shortUrl'] = $img; util::success($data); } util::fail('上传失败!'); } //保存图片 ssh 2019.12.20 public function actionSave() { header('Content-type:text/html;charset=utf-8'); $base64_image_content = ''; //匹配出图片的格式 if (preg_match('/^(data:\s*image\/(\w+);base64,)/', $base64_image_content, $result)) { $type = $result[2]; $sjId = 12358; $month = date("Ym"); $date = date("d"); $path = dirUtil::getImgUploadDir() . "/{$sjId}/{$month}/{$date}/"; if (!file_exists($path)) { //检查是否有该文件夹,如果没有就创建,并给予最高权限 mkdir($path, 0700, true); } $preFileName = stringUtil::uniqueFileName(); $newFile = $preFileName . ".{$type}"; $fullPath = $path . $newFile; if (file_put_contents($fullPath, base64_decode(str_replace($result[1], '', $base64_image_content))) == false) { util::fail('上传失败'); } $img = "/uploads/{$sjId}/{$month}/{$date}/" . $newFile; $data = business::formatUploadImg($img); $data['shortUrl'] = $img; util::success($data); } } }