diff --git a/src/Intervention/Image/Size.php b/src/Intervention/Image/Size.php index 46ae3135..f8b6dc8e 100644 --- a/src/Intervention/Image/Size.php +++ b/src/Intervention/Image/Size.php @@ -338,8 +338,8 @@ class Size case 'middle': case 'center-center': case 'middle-middle': - $x = intval($this->width / 2); - $y = intval($this->height / 2); + $x = intval($this->width / 2) + $offset_x; + $y = intval($this->height / 2) + $offset_y; break; default: