Skip to content

Commit a911ead

Browse files
committed
Updated README
1 parent 04a24fc commit a911ead

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

README.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,13 @@
2323
- Resize, crop, pad, rotate, show and save images
2424
- Create image reflection
2525
- Crop whitespace
26+
- Sharpen images
2627

2728
## Setup
2829

2930
Following steps are necessary to get this module working, considering a zf2-skeleton or very similar application:
3031

31-
1. Run: `php composer.phar require webino/webino-image-thumb:2.*`
32+
1. Run: `php composer.phar require webino/webino-image-thumb:dev-develop`
3233
3. Add `WebinoImageThumb` to the enabled modules list
3334

3435
## Requirements
@@ -62,6 +63,11 @@
6263
$cropper = $thumbnailer->createWhitespaceCropper();
6364
$thumb = $thumbnailer->create($imagePath, array(), array($cropper));
6465

66+
- Use sharpen plugin:
67+
68+
$sharpen = $thumbnailer->createSharpen();
69+
$thumb = $thumbnailer->create($imagePath, array(), array($sharpen));
70+
6571
## Options
6672

6773
The options array allows you to customize the behavior of the library a bit. Some of these options are implementation-specific, and are noted as such. So, let's first go over what options are available to us:
@@ -185,6 +191,7 @@
185191

186192
- Requires PHPThumb 2.0 via composer
187193
- Added Whitespace Cropper plugin
194+
- Added Sharpen plugin
188195

189196
### 1.0.0
190197

0 commit comments

Comments
 (0)