To resize the uploaded image, you can try this code: -
function getWidth() { return imagesx($this->image); } function getHeight() { return imagesy($this->image); } function resize($width,$height) { $new_image = imagecreatetruecolor($width, $height); imagecopyresampled($new_image, $this->image, 0, 0, 0, 0, $width, $height, $this->getWidth(), $this->getHeight()); $this->image = $new_image; }
source share