Error

HTTP 500 Whoops, looks like something went wrong.

Call to undefined function exif_imagetype()

Exception

Error

  1.     $image __DIR__ '/images/' $_GET['thumb'];
  2.     if (file_exists($image)) {
  3.         if (strstr(strtolower($image), 'webp') && exif_imagetype($image) === IMAGETYPE_WEBP) {
  4.             // if original webP without width, height, just read it!
  5.             if (!isset($_GET['w']) and !isset($_GET['w'])) {
  6.                 header('Content-type: image/webp');
  7.                 readfile($image);
  8.                 die;

Stack Trace

Error
Error:
Call to undefined function exif_imagetype()

  at /home/pinsoft/public_html/r_imgs.php:95