diff --git a/src/Intervention/Image/Size.php b/src/Intervention/Image/Size.php index f2babe1a..cb9f5562 100644 --- a/src/Intervention/Image/Size.php +++ b/src/Intervention/Image/Size.php @@ -337,8 +337,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: