Skip to content
Snippets Groups Projects

Fix "Call to undefined function Drupal\system\Plugin\ImageToolkit\imageavif()"

Closed cilefen requested to merge issue/drupal-3526690:3526690-call-to-undefined into 11.x
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -562,7 +562,7 @@ protected static function checkAvifSupport(): bool {
}
$tempFile = fopen('php://memory', 'r+');
$supported = imageavif(imagecreatetruecolor(1, 1), $tempFile, 0, 10) && fstat($tempFile)['size'] > 0;
$supported = function_exists('imageavif') && imageavif(imagecreatetruecolor(1, 1), $tempFile, 0, 10) && fstat($tempFile)['size'] > 0;
fclose($tempFile);
return $supported;
Loading