PHPackages                             saad/image - 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. [Image &amp; Media](/categories/media)
4. /
5. saad/image

ActiveLibrary[Image &amp; Media](/categories/media)

saad/image
==========

This Package to deal with images crop, resize, write text, integrate with Eloquent Model to get and save inmages and creating thumbnails'

v1.2(3y ago)17.0k↑418.8%[1 issues](https://github.com/ahmad-sa3d/saad-image/issues)1MITPHPPHP &gt;=7.0.0

Since Dec 2Pushed 3y ago1 watchersCompare

[ Source](https://github.com/ahmad-sa3d/saad-image)[ Packagist](https://packagist.org/packages/saad/image)[ RSS](/packages/saad-image/feed)WikiDiscussions master Synced today

READMEChangelogDependenciesVersions (6)Used By (1)

Image Library, used to manipulate images like crop, resize and writing texts on images
======================================================================================

[](#image-library-used-to-manipulate-images-like-crop-resize-and-writing-texts-on-images)

Install
-------

[](#install)

You can pull in the package via composer:

```
$ composer require saad/image
```

Register Package Service Provider for Laravel
---------------------------------------------

[](#register-package-service-provider-for-laravel)

> `Laravel 5.5` The package will automatically register itself.

> `Laravel < 5.5`

> add the following to your providers in config\\app.php
>
> ```
> 'providers' => [
> 	.....
> 	Saad\Image\ImageServiceProvider::class,
> ]
> ```

Publish package aconfiguration and assets
-----------------------------------------

[](#publish-package-aconfiguration-and-assets)

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

use
---

[](#use)

to use Core Image Library

```
