Use first party image support

This commit is contained in:
DariusIII
2026-07-14 22:41:51 +02:00
parent cb4f4f1083
commit a37f3bd3c8
6 changed files with 214 additions and 65 deletions
+5 -5
View File
@@ -4,17 +4,17 @@ return [
/*
|--------------------------------------------------------------------------
| Image Driver
| Default Image Driver
|--------------------------------------------------------------------------
|
| Intervention Image supports "GD Library" and "Imagick" to process images
| internally. You may choose one of them according to your PHP
| configuration. By default PHP's "GD Library" implementation is used.
| This option controls the default image processing driver that will be
| used when manipulating or converting images. This driver is always
| utilized unless another driver is explicitly specified instead.
|
| Supported: "gd", "imagick"
|
*/
'driver' => 'imagick',
'default' => env('IMAGE_DRIVER', 'imagick'),
];