• Support
  • How install extension AVIF in php 8.3

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.

    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.

      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.