Files
UNIT3D-Community-Edition/config/image.php
HDVinnie 2c90b3ad6b (Update) Avatar Uploading
- now supports animated gif uploading given it is symmetrical
- add max image size configuration to image.php (Default 2MB)
- this is not the prettiest but will do until Intervention supports
animated GIF’s
2018-05-14 11:41:29 -04:00

32 lines
795 B
PHP

<?php
return [
/*
|--------------------------------------------------------------------------
| 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"
|
*/
'driver' => 'gd',
/*
|--------------------------------------------------------------------------
| Avatar Settings
|--------------------------------------------------------------------------
|
| GIF Avatar Settings
| Size: "bytes"
*/
'max_upload_size' => '2000000',
];