Just use this lib https://github.com/stojg/crop ``` /** * @param \Imagick $image * @param int $width * @param int $height */ function smartCropImage(\Imagick $image, $width, $height) { $cropper = new CropEntropy($image); $croppedImage = $cropper->resizeAndCrop($width, $height); ```