瀏覽代碼

Add image config

Daniel Supernault 7 年之前
父節點
當前提交
72a5a12804
共有 1 個文件被更改,包括 20 次插入0 次删除
  1. 20 0
      config/image.php

+ 20 - 0
config/image.php

@@ -0,0 +1,20 @@
+<?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'
+
+];