From fc36888b7df3433374802499b84cc38600f40a4a Mon Sep 17 00:00:00 2001 From: Jeroen De Meerleer Date: Mon, 16 Sep 2024 15:45:47 +0200 Subject: [PATCH] Updated image driver in ImageManager The image driver used in the ImageManager instance has been switched from Imagick to Gd. This change should not affect any existing functionality but may improve performance and compatibility with different server setups. --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index 0ea4a91..332408f 100644 --- a/index.php +++ b/index.php @@ -11,7 +11,7 @@ use Intervention\Image\ImageManager; use Symfony\Component\HttpFoundation\Response; // create an image manager instance with favored driver -$manager = new ImageManager(\Intervention\Image\Drivers\Imagick\Driver::class); +$manager = new ImageManager(\Intervention\Image\Drivers\Gd\Driver::class); if(php_sapi_name() == 'cli') { $args = NULL; parse_str($argv[1], $args);