6

ファイルをサークルとしてアップロードしようとしていますが、うまくいきません。画像にマスクを適用することに関するいくつかのトピックを見てきましたが、マスクを適用すると時間がかかり、サーバーが要求をシャットダウンします。

Intervention ImageLaravelのライブラリを使用しています

私のコードは次のとおりです。

$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);
}
4

1 に答える 1

12

これが私の場合に機能する関数です。ただし、imagick ドライバーを使用する場合のみです。標準の gd ライブラリは、少なくとも私のテスト コンピューターでは非常に遅いです。vendor\intervention\image\src\Intervention\Image\Gd\Commands\MaskCommand.php を見て理由を確認できます。

public function upload() {

    $path = storage_path('app')."/";

    $image = \Image::make(\Input::file('image'));
    $image->encode('png');

    /* if you want to have a perfect and complete circle using the whole width and height the image
     must be shaped as as square. If your images are not guaranteed to be a square maybe you could
     use Intervention's fit() function */
    //  $image->fit(300,300);

    // create empty canvas
    $width = $image->getWidth();
    $height = $image->getHeight();
    $mask = \Image::canvas($width, $height);

    // draw a white circle
    $mask->circle($width, $width/2, $height/2, function ($draw) {
        $draw->background('#fff');
    });

    $image->mask($mask, false);
    $image->save($path."circled.png");

}
于 2015-04-14T06:47:19.530 に答える