Good evening, I'm trying to use AVIF in PHP 8.3 and I can't activate it. What would be the procedure for activation? I see that GD is already enabled, but it doesn't have support for AVIF.
How install extension AVIF in php 8.3
- Edited
aaP_thomas_marcelino use imagick extension ? you need install ImageMagick on your system first.
aaP_alin_rzv Good evening, how are you? Thank you for your reply. I already have it installed on my system and GD is active, webp works, but avif does not activate in any way. I made a plugin to convert images to wordpess, but it is not working in avif because it does not have the extension.
aaP_thomas_marcelino imagick is similar to GD ,
Here examples converting
Convert AVIF to JPEG
<?php
$inputPath = 'image.avif';
$outputPath = 'image_converted.jpg';
try {
$image = new Imagick($inputPath);
$image->setImageFormat('jpeg');
$image->setImageCompression(Imagick::COMPRESSION_JPEG);
$image->setImageCompressionQuality(85); // Adjust quality as needed
$image->writeImage($outputPath);
echo "Converted AVIF to JPEG successfully!";
} catch (Exception $e) {
echo "Error: " . $e->getMessage();
}
?>
Convert JPEG to AVIF
<?php
$inputPath = 'image.jpg';
$outputPath = 'image_converted.avif';
try {
$image = new Imagick($inputPath);
$image->setImageFormat('avif');
$image->setOption('avif:quality', '50'); // AVIF-specific quality
$image->writeImage($outputPath);
echo "Converted JPEG to AVIF successfully!";
} catch (Exception $e) {
echo "Error: " . $e->getMessage();
}
?>
Using imagick extension, PHP itself does not need to be compiled with AVIF support.
What matters is whether your ImageMagick installation supports AVIF, and that your Imagick PHP extension is linked to that ImageMagick.
aaP_thomas_marcelino you will need to recompile the php with avif option if you wish to use GD library, try switch to imagick to avoid that kind of trouble, imagick can handle many extensions.
aaP_alin_rzv Perfect! I'll try to adapt the functions you sent me into my plug-in.
I gave up, I even tried reinstalling php by recompiling and nothing
I realized that avif needs version 7+ of imagic and the one compiled in the panel is 6
aaP_thomas_marcelino on php recompile you only need --with-avif no equal no values just the param
--with-avif
Hello, php uses the operating system by default. Please check what version is installed on the operating system
aaPanel_Kern Thanks for the support, I managed to enable it. But there is another situation, my server is arm and it didn't work for me, but for AMD it was perfect, thanks again and keep up. I've been using the panel for years and for me it's the best.
aaP_alin_rzv Thanks, I'll bookmark it to document it.
aaP_alin_rzv I basically installed it on the operating system and in php.ini I pointed imagick.so to the installation location