| 1 |
<?php |
| 2 |
|
| 3 |
return [ |
| 4 |
|
| 5 |
/* |
| 6 |
|-------------------------------------------------------------------------- |
| 7 |
| Image Driver |
| 8 |
|-------------------------------------------------------------------------- |
| 9 |
| |
| 10 |
| Intervention Image supports "GD Library" and "Imagick" to process images |
| 11 |
| internally. You may choose one of them according to your PHP |
| 12 |
| configuration. By default PHP's "GD Library" implementation is used. |
| 13 |
| |
| 14 |
| Supported: "gd", "imagick" |
| 15 |
| |
| 16 |
*/ |
| 17 |
|
| 18 |
'driver' => 'gd' |
| 19 |
|
| 20 |
]; |
| 21 |
|