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

https://github.com/io-developer/php-imagetransform

Lib for easy resize and crop images
https://github.com/io-developer/php-imagetransform

Last synced: 5 months ago
JSON representation

Lib for easy resize and crop images

Awesome Lists containing this project

README

          

# ImageTransform
PHP library for easy image resizing and cropping

## Requirements
PHP >= 5.4
- gd

## Example

```php
inputFile("source.jpg")
->cropOuter(1280, 720)
->reduce(200, 200)
->exportFileWithInputFormat("output.jpg");
```