PHPackages                             mindinventory/glide-image-utility - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. mindinventory/glide-image-utility

ActiveLibrary

mindinventory/glide-image-utility
=================================

Easily convert images with Glide Image Utility.

v1.0.5(5y ago)112.2k1MITPHPPHP ^7.2|^8.0

Since Jan 16Pushed 3y ago6 watchersCompare

[ Source](https://github.com/Mindinventory/glide-image-utility)[ Packagist](https://packagist.org/packages/mindinventory/glide-image-utility)[ RSS](/packages/mindinventory-glide-image-utility/feed)WikiDiscussions master Synced 5d ago

READMEChangelog (4)Dependencies (3)Versions (9)Used By (0)

Glide Image Utility
===================

[](#glide-image-utility)

Easily convert images with Glide Image Utility

This package provides an easy to use class to manipulate images. Using this package we can manipulate aws s3 bucket image also.

Here's an example of how the package can be used:

```
MiImage::createImage($ImagePath,['w'=> 50, 'h'=>100, 'fit'=>'crop', 'bg' => 'CCC']);
```

Installation
------------

[](#installation)

You can install the package through Composer.

```
composer require mindinventory/glide-image-utility
```

In Laravel 5.5 the service provider and facade will automatically get registered. In older versions of the framework just add the service provider and facade in `config/app.php` file:

```
'providers' => [
    ...
    Mi\MiImageUtility\ImageServiceProvider::class,
    ...
];
```

You can publish the config file of the package using artisan.

```
php artisan vendor:publish --provider="Mi\MiImageUtility\ImageServiceProvider" --tag=config
```

The config file looks like this:

```
