I want to increase image resolution and size (upscale). Please suggest being a useful method. And guide me on how to configure it with Laravel. I have used this piece of code, but here I found an Error: Class "Imagick" not found.
~
$imagePath = "photo-compare-before.jpg";
function improve_qaulity_image($imagePath) {
$imagick = new Imagick(realpath($imagePath));
$imagick->enhanceImage();
header("Content-Type: image/jpg");
echo $imagick->getImageBlob();
}
improve_qaulity_image($imagePath);
~