123456789101112131415161718 |
- <?php
- return [
- /*
- |--------------------------------------------------------------------------
- | Image Driver
- |--------------------------------------------------------------------------
- |
- | Intervention Image supports "GD Library" or "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.
- |
- | Supported: "gd", "imagick"
- |
- */
- 'driver' => env('IMAGE_DRIVER', 'gd'),
- ];
|