Attendize/config/image.php

21 lines
509 B
PHP
Raw Normal View History

2016-02-29 15:59:36 +00:00
<?php
2016-03-05 00:18:10 +00:00
return [
2016-02-29 15:59:36 +00:00
/*
|--------------------------------------------------------------------------
| 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.
|
| Supported: "gd", "imagick"
|
*/
2016-03-05 00:18:10 +00:00
'driver' => 'gd',
2016-02-29 15:59:36 +00:00
2016-03-05 00:18:10 +00:00
];