The class resizes images and stores them in the assets/images folder.
Usage:
$imageObj = new Image(new File('example.jpg'));
$src = $imageObj->setTargetWidth(640)
->setTargetHeight(480)
->setResizeMode('center_center')
->executeResize()
->getResizedPath();