1
0
mirror of https://github.com/Intervention/image.git synced 2025-08-28 16:19:50 +02:00
This commit is contained in:
Oliver Vogel
2021-10-30 17:51:16 +02:00
parent bab6cef4ae
commit f4b2f3eeb2

View File

@@ -19,10 +19,10 @@ class BlurModifier implements ModifierInterface
public function apply(ImageInterface $image): ImageInterface
{
foreach ($this->image as $frame) {
foreach ($image as $frame) {
$frame->getCore()->blurImage(1 * $this->amount, 0.5 * $this->amount);
}
return $this->image;
return $image;
}
}