resizeImageToSquare($x_offset, $y_offset); $this->resize($width, $height); $this->save(); } function resizeImageToSquare($x_offset=0, $y_offset=0) { $square_side = min ($this->width, $this->height); $this->crop($square_side, $square_side, $x_offset, $y_offset); } }