我正在尝试将我的文件上传为圈子,但我无法使其正常工作。我已经看到了一些关于对图像应用掩码的主题,但是当我应用掩码时,它需要很长时间,并且服务器会关闭请求。
我正在使用Intervention Image
Laravel 的库
我的代码如下:
$identifier = "{$this->loggedUser->id}" . str_random(9) . ".{$file->getClientOriginalExtension()}";
$mask = $this->createCircleMask(200, 200);
$thumbMask = $this->createCircleMask(40, 40);
Image::make($file->getRealPath())->mask($mask)->save(public_path("images/profile/{$identifier}"));
Image::make($file->getRealPath())->mask($thumbMask)->save(public_path("images/profile/thumbs/{$identifier}"));
该createCircleMask
方法如下所示:
public function createCircleMask($width, $height)
{
$circle = Image::canvas($width, $height, '#000000');
return $circle->circle($width - 1, $width / 2, $height / 2);
}