BodyEND

Results 1 comments of BodyEND

For croping i am using this function ``` public function cropImage($cropType=IMG_CROP_DEFAULT) { $croppedImage = imagecropauto($this->image, $cropType); if ($croppedImage!== false) { imagedestroy($this->image); $this->image = $croppedImage; } return $this; } ```