Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jonathanprince/img-resize-php

Image resizer class for php
https://github.com/jonathanprince/img-resize-php

Last synced: 11 days ago
JSON representation

Image resizer class for php

Awesome Lists containing this project

README

        

#Image Resizer Class for PHP

**Example**

```php

// include resizer class
include './resizer.php';

// create new instance of resizer
$image = new Resizer('/path/to/original/image.jpg');

// call resize method with desired width and height
$image->resize(640, 360);

// save resized image, quality setting: 1(low quality) - 10(high quality)
$image->save('/path/to/resized/image.jpg', 10);

```