From c00c8508ea484d0094d40c9407eab59521218584 Mon Sep 17 00:00:00 2001 From: Kyrian Obikwelu Date: Tue, 27 Aug 2024 21:09:50 +0100 Subject: [PATCH] fix(docs): Update image documentation on default image driver --- docs/utils/image.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/utils/image.md b/docs/utils/image.md index 49a7b37..ac4afa7 100644 --- a/docs/utils/image.md +++ b/docs/utils/image.md @@ -27,8 +27,8 @@ The `Image` class is built to work with multiple image processing backends. ## Setting the image driver -The image driver can be set using the `setImageDriver()` method in the `Transformers` class. The default driver is -IMAGICK, but you can change it to GD or VIPS based on your requirements. +The image driver can be set using the `setImageDriver()` method in the `Transformers` class. There is no default driver, +so if you're performing any image related tasks, you must set an image driver. ```php use Codewithkyrian\Transformers\Transformers;