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
- Host: GitHub
- URL: https://github.com/io-developer/php-imagetransform
- Owner: io-developer
- License: mit
- Created: 2017-03-22T10:33:39.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-11-13T10:23:38.000Z (over 8 years ago)
- Last Synced: 2025-02-11T14:07:26.626Z (about 1 year ago)
- Language: PHP
- Size: 11.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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");
```