Image driver
By default Glide uses the GD library. However you can also use Glide with ImageMagick if the Imagick PHP extension is installed.
<?php
$server = League\Glide\ServerFactory::create([
    'driver' => 'imagick',
]);
 
 
    
     Glide
        HTTP based image manipulations
    
    
        Presented by The League of Extraordinary Packages
            
        
        Glide
        HTTP based image manipulations
    
    
        Presented by The League of Extraordinary Packages
    
By default Glide uses the GD library. However you can also use Glide with ImageMagick if the Imagick PHP extension is installed.
<?php
$server = League\Glide\ServerFactory::create([
    'driver' => 'imagick',
]);