isImage()) throw new NotFoundException('Image not found'); $image = $asset->getImage(); $crop_mode = isset($_GET['mode']) ? $_GET['mode'] : false; $url = $image->getThumbnailUrl($_GET['width'], $_GET['height'], $crop_mode, true, true); if ($url) { header('Location: ' . $url); exit; } } }