' . $file); } $result = $file; if (stripos( $user_agent, 'Chrome') !== false) { // "Google Chrome"; $result = $file . ".webp"; header('Content-Type: image/webp'); } elseif (stripos( $user_agent, 'Safari') !== false) { } if (!file_exists($result)) { exec("convert -colorspace RGB '{$file}' '{$result}'", $t); } $ext = pathinfo($result, PATHINFO_EXTENSION); if ($ext == 'jpg' || $ext == 'jpeg') { header('Content-Type: image/jpeg'); } if ($ext == 'png') { header('Content-Type: image/png'); } echo file_get_contents($result);