Skip to content
Snippets Groups Projects
Commit 93b4f5b4 authored by catch's avatar catch
Browse files

Issue #3526690 by cilefen, xmacinfo, andypost, grimreaper, mstrelan: Call to...

Issue #3526690 by cilefen, xmacinfo, andypost, grimreaper, mstrelan: Call to undefined function Drupal\system\Plugin\ImageToolkit\imageavif()

(cherry picked from commit a00c032c)
parent 749a119e
No related branches found
No related tags found
1 merge request!12357Issue #3529639 by mradcliffe, smustgrave, solomon.yifru: replacing a depricated css
Pipeline #508256 passed with warnings
Pipeline: drupal

#508285

    Pipeline: drupal

    #508274

      Pipeline: drupal

      #508259

        ......@@ -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;
        ......
        0% Loading or .
        You are about to add 0 people to the discussion. Proceed with caution.
        Please register or to comment