X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FObject%2FImage.php;h=5e915d84f5f47ca9154c2cb6b7a3f45aa7e11f71;hb=b9bb525fe91c176ada2323c2d628291a27594d59;hp=d6c897e88dcf392dd80a85ecaea9a383852084ab;hpb=14e4c0db8e4ede6e9567893cc1b67f7ccbde0eca;p=friendica.git diff --git a/src/Object/Image.php b/src/Object/Image.php index d6c897e88d..5e915d84f5 100644 --- a/src/Object/Image.php +++ b/src/Object/Image.php @@ -600,7 +600,7 @@ class Image do { $this->image->cropImage($w, $h, $x, $y); /* - * We need to remove the canva, + * We need to remove the canvas, * or the image is not resized to the crop: * http://php.net/manual/en/imagick.cropimage.php#97232 */ @@ -718,7 +718,7 @@ class Image if ($image->isImagick()) { try { $colors = $image->image->getImagePixelColor($x, $y)->getColor(); - } catch (\Throwable $th) { + } catch (\Exception $exception) { return ''; } $row[] = [$colors['r'], $colors['g'], $colors['b']];