Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
SmetDenis committed Jul 13, 2020
1 parent e1c7f5f commit 1b623fe
Showing 1 changed file with 9 additions and 18 deletions.
27 changes: 9 additions & 18 deletions README.md
Expand Up @@ -3,15 +3,17 @@
[![Build Status](https://travis-ci.org/JBZoo/Image.svg?branch=master)](https://travis-ci.org/JBZoo/Image) [![Coverage Status](https://coveralls.io/repos/JBZoo/Image/badge.svg)](https://coveralls.io/github/JBZoo/Image?branch=master) [![Psalm Coverage](https://shepherd.dev/github/JBZoo/Image/coverage.svg)](https://shepherd.dev/github/JBZoo/Image)
[![Latest Stable Version](https://poser.pugx.org/JBZoo/Image/v)](https://packagist.org/packages/JBZoo/Image) [![Latest Unstable Version](https://poser.pugx.org/JBZoo/Image/v/unstable)](https://packagist.org/packages/JBZoo/Image) [![Dependents](https://poser.pugx.org/JBZoo/Image/dependents)](https://packagist.org/packages/JBZoo/Image/dependents?order_by=downloads) [![GitHub Issues](https://img.shields.io/github/issues/JBZoo/Image)](https://github.com/JBZoo/Image/issues) [![Total Downloads](https://poser.pugx.org/JBZoo/Image/downloads)](https://packagist.org/packages/JBZoo/Image/stats) [![GitHub License](https://img.shields.io/github/license/JBZoo/Image)](https://github.com/JBZoo/Image/blob/master/LICENSE)

Package provides object-oriented way to manipulate with images as simple as possible.

### Overview
This class makes image manipulation in PHP as simple as possible.
The examples are the best way to learn how to use it, but here it is in a nutshell:

```php
require_once './vendor/autoload.php'; // composer autoload.php
### Install
```sh
composer require jbzoo/image
```

### Example

// Get needed classes
```php
use JBZoo\Image\Image;

$img = (new Image('./example/source-image.jpg'))
Expand All @@ -37,18 +39,7 @@ With this class, you can effortlessly:
* Strip EXIF data (Just save it!)


### Requirements
This class requires PHP 5.3 and PHP GD library. Recommended PHP 5.4 and above


### Install
Just use the composer
```sh
composer require jbzoo/image:"4.x-dev" # Last dev
composer require jbzoo/image:"^4.0" # Last stable
```

### How to use
### Usage
```php
use JBZoo\Image\Image;
use JBZoo\Image\Filter;
Expand Down

0 comments on commit 1b623fe

Please sign in to comment.