$image = __DIR__ . '/images/' . $_GET['thumb'];
if (file_exists($image)) {
if (strstr(strtolower($image), 'webp') && exif_imagetype($image) === IMAGETYPE_WEBP) {
// if original webP without width, height, just read it!
if (!isset($_GET['w']) and !isset($_GET['w'])) {
header('Content-type: image/webp');
readfile($image);
die;
Error
|
---|
Error: Call to undefined function exif_imagetype() at /home/pinsoft/public_html/r_imgs.php:95 |