Skip to content

Commit b28532f

Browse files
author
Karel Wintersky
committed
1.1.1
- readme fix
1 parent c371e44 commit b28532f

File tree

1 file changed

+7
-14
lines changed

1 file changed

+7
-14
lines changed

README.md

+7-14
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ ajur-media/php-image-resize
55

66
PHP library to resize, scale and crop images.
77

8-
![Build Status](https://github.com/gumlet/php-image-resize/workflows/PHP%20CI/badge.svg) [![Latest Stable Version](https://poser.pugx.org/gumlet/php-image-resize/v/stable)](https://packagist.org/packages/gumlet/php-image-resize) [![Monthly Downloads](https://poser.pugx.org/gumlet/php-image-resize/d/monthly)](https://packagist.org/packages/gumlet/php-image-resize) [![Coverage Status](https://coveralls.io/repos/github/gumlet/php-image-resize/badge.svg?branch=master)](https://coveralls.io/github/gumlet/php-image-resize?branch=master)
9-
108
This library is enhanced fork of https://github.com/gumlet/php-image-resize created for AJUR Media.
119

1210
------------------
@@ -16,19 +14,21 @@ Setup
1614

1715
This package is available through Packagist with the vendor and package identifier the same as this repo.
1816

19-
Use [Composer](https://getcomposer.org/): `composer require ajur-media/php-image-resize`
17+
Use [Composer](https://getcomposer.org/):
18+
19+
`composer require ajur-media/php-image-resize`
2020

2121
Because this class uses namespacing, when instantiating the object, you need to either use the fully qualified namespace:
2222

2323
```php
24-
$image = new \Gumlet\ImageResize();
24+
$image = new \AJUR\Toolkit\ImageResize();
2525
```
2626

2727
Or alias it:
2828

2929
```php
3030

31-
use \Gumlet\ImageResize;
31+
use AJUR\Toolkit\ImageResize;
3232

3333
$image = new ImageResize();
3434
```
@@ -204,6 +204,7 @@ If you would like to save/output in a different image type, you need to pass a (
204204
- `IMAGETYPE_GIF`
205205
- `IMAGETYPE_JPEG`
206206
- `IMAGETYPE_PNG`
207+
- `IMAGETYPE_BMP`
207208

208209
This allows you to save in a different type to the source:
209210

@@ -225,7 +226,7 @@ $image->resize(800, 600);
225226
$image->save('image2.jpg');
226227
```
227228

228-
By default they are set to 85 and 6 respectively. See the manual entries for [`imagejpeg()`](http://www.php.net/manual/en/function.imagejpeg.php) and [`imagepng()`](http://www.php.net/manual/en/function.imagepng.php) for more info.
229+
By default, they are set to 85 and 6 respectively. See the manual entries for [`imagejpeg()`](http://www.php.net/manual/en/function.imagejpeg.php) and [`imagepng()`](http://www.php.net/manual/en/function.imagepng.php) for more info.
229230

230231
You can also pass the quality directly to the `save()`, `output()` and `getImageAsString()` methods:
231232

@@ -347,18 +348,10 @@ $image = new ImageResize('image.png');
347348
$image->gamma(true);
348349
```
349350

350-
API Doc
351-
-------
352-
353-
https://gumlet.github.io/php-image-resize/index.html
354-
355-
------------------
356351

357352
Maintainer
358353
----------
359354

360355
This library is maintained by <a href="https://www.gumlet.com" target="_blank">Gumlet.com</a>
361356

362-
[<img src="https://www.gumlet.com/public/img/logo.png" width="300px">](https://www.gumlet.com)
363-
364357
This fork is maintained by Karel Wintersky <[email protected]>

0 commit comments

Comments
 (0)