You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This library is enhanced fork of https://github.com/gumlet/php-image-resize created for AJUR Media.
11
9
12
10
------------------
@@ -16,19 +14,21 @@ Setup
16
14
17
15
This package is available through Packagist with the vendor and package identifier the same as this repo.
18
16
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`
20
20
21
21
Because this class uses namespacing, when instantiating the object, you need to either use the fully qualified namespace:
22
22
23
23
```php
24
-
$image = new \Gumlet\ImageResize();
24
+
$image = new \AJUR\Toolkit\ImageResize();
25
25
```
26
26
27
27
Or alias it:
28
28
29
29
```php
30
30
31
-
use \Gumlet\ImageResize;
31
+
use AJUR\Toolkit\ImageResize;
32
32
33
33
$image = new ImageResize();
34
34
```
@@ -204,6 +204,7 @@ If you would like to save/output in a different image type, you need to pass a (
204
204
-`IMAGETYPE_GIF`
205
205
-`IMAGETYPE_JPEG`
206
206
-`IMAGETYPE_PNG`
207
+
-`IMAGETYPE_BMP`
207
208
208
209
This allows you to save in a different type to the source:
209
210
@@ -225,7 +226,7 @@ $image->resize(800, 600);
225
226
$image->save('image2.jpg');
226
227
```
227
228
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.
229
230
230
231
You can also pass the quality directly to the `save()`, `output()` and `getImageAsString()` methods:
231
232
@@ -347,18 +348,10 @@ $image = new ImageResize('image.png');
0 commit comments