env('IMAGE_DRIVER', 'vips'), /* |-------------------------------------------------------------------------- | Configuration Options |-------------------------------------------------------------------------- | | These options control the behavior of Intervention Image. | | - "autoOrientation" controls whether an imported image should be | automatically rotated according to any existing Exif data. | | - "decodeAnimation" decides whether a possibly animated image is | decoded as such or whether the animation is discarded. | | - "backgroundColor" Defines the default background color. | | - "strip" controls if meta data like exif tags should be removed when | encoding images. */ 'options' => [ 'autoOrientation' => true, 'decodeAnimation' => true, 'backgroundColor' => env('IMAGE_BACKGROUNDCOLOR', 'ffffff'), 'strip' => env('IMAGE_STRIP', true), ], ];