ImageMagick has the ability to support the JPEG XL format.
This commit is contained in:
Visman 2023-07-04 16:45:33 +07:00
parent 76dbef67f2
commit 9981a68a7e

View file

@ -64,6 +64,7 @@ class Files
'image/avif' => 'avif',
'image/heif' => 'heif',
'image/heic' => 'heic',
'image/jxl' => 'jxl',
];
/**
@ -848,6 +849,7 @@ class Files
'image/avif' => 'avif',
'image/heif' => 'heif',
'image/heic' => 'heic',
'image/jxl' => 'jxl',
];
public function __construct(int|string $maxFileSize, int|string $maxImgSize, protected array $imageDrivers, protected Container $c)