mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-03-18 11:23:30 -05:00
- 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
32 lines
795 B
PHP
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',
|
|
|
|
];
|