Errors

Class ‘Intervention\Image\ImageServiceProvider’ not found in Laravel

Ravindra Kumar

The error “Class ‘Intervention\Image\ImageServiceProvider’ not found” in Laravel usually occurs when the Intervention Image package is not properly installed or configured.

Steps to Fix:

1. Install Intervention Image Package

Run the following command to install the package via Composer:

 composer require intervention/image 

2. Check config/app.php (For Laravel <= 5.4)

If you’re using Laravel 5.4 or earlier, manually add the service provider and alias in config/app.php:

  • Service Provider:

  •  'providers' => [
    Intervention\Image\ImageServiceProvider::class,
    ], 
  • Alias:
  •  'aliases' => [
    'Image' => Intervention\Image\Facades\Image::class,
    ], 

For Laravel 5.5+ (including Laravel 9 and 10), you don’t need to manually add the provider, as it is auto-discovered.

3. Clear Config and Cache

After installation, clear the configuration cache:

 php artisan config:clear
php artisan cache:clear 

4. Publish Configuration (Optional)

You can publish the configuration file to config/image.php:

 php artisan vendor:publish --provider="Intervention\Image\ImageServiceProvider" 

5. Dump Autoload and Restart Server

Run:

 composer dump-autoload
php artisan serve 

6. Verify Installation

Try running this inside a Laravel route or controller:

</p>
use Intervention\Image\Facades\Image;

$image = Image::make(public_path('example.jpg'))->resize(300, 200);
return $image->response('jpg');
<p data-start="1364" data-end="1418">

Ravindra Kumar

Ravindra is a passionate full stack developer and dedicated blogger with a flair for crafting user-friendly web applications and insightful articles. With expertise spanning front-end and back-end technologies, Ravindra brings ideas to life through innovative coding solutions.

Suggested Reading

imagick php extension must be installed to use this driver in Laravel

It means that your Laravel app (or a package like Intervention Image, Spatie Media Library, or Laravel Snappy) is trying to use the Imagick image processing library, but it’s not installed or enabled on your server. If you’re using Ubuntu/Debian (Linux server): sudo apt-get update sudo apt-get install -y php-imagick sudo service apache2 restart # […]

Driver (intervention\image\drivers\gd\driver) could not be instantiated. laravel 10

The error: Driver (intervention\image\drivers\gd\driver) could not be instantiated. means that Intervention Image v3 (which you’re likely using with Laravel 10) cannot find or instantiate the GD driver. 1. Install GD or Imagick PHP extension Make sure you have GD or Imagick PHP extension installed and enabled. Check GD (on your server or local): php -m […]

Call to undefined method Intervention\Image\ImageManager::make() in Laravel

The error “Call to undefined method Intervention\Image\ImageManager::make()” typically happens when you’re trying to use the make() method from the Intervention Image package but haven’t correctly set up the manager or are using the wrong instance. Solution Make sure you’re using Intervention\Image\Facades\Image facade, not ImageManager directly. 1. Correct Usage in Laravel In your controller or wherever […]

Illuminate \ Contracts \ Encryption \ DecryptException The payload is invalid in laravel

The error “Illuminate \ Contracts \ Encryption \ DecryptException: The payload is invalid” in Laravel occurs when the decryption of an encrypted value fails. This can happen due to several reasons: Possible Causes & Solutions: 1. Incorrect Encryption Key (APP_KEY) Laravel uses the encryption key defined in the .env file (APP_KEY). If the key is […]

SQLSTATE[HY001]: Memory allocation error: 1038 Out of sort memory, consider increasing server sort buffer size

The error SQLSTATE[HY001]: Memory allocation error: 1038 Out of sort memory, consider increasing server sort buffer size occurs when MySQL runs out of memory while sorting data. To resolve this issue, follow these steps: 1. Increase sort_buffer_size in MySQL Configuration The sort_buffer_size determines the amount of memory allocated for sorting operations. Increasing it can help […]

GD Library extension not available with this PHP installation in Laravel

The error “GD Library extension not available with this PHP installation” in Laravel or PHP indicates that the GD library for image processing, is not enabled or installed on your server or local PC. Here’s how to fix it: Steps to Resolve: Run the following command in the terminal or common prompt to check if […]