suin / php-image-resizer
A simple image resizing library for PHP.
Installs: 8 381
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 3
Forks: 1
Open Issues: 0
Requires
- php: >=5.3.0
- ext-gd: *
This package is auto-updated.
Last update: 2024-11-06 08:38:35 UTC
README
This is a simple image resizing library for PHP.
Requirements
- PHP 5.3 or later
- GD 2.0.28 or later
- GD needs to support JPEG, GIF, PNG
Installation
The recommended way to install this library is through composer. Just create a composer.json
file and run the php composer.phar install
command to install it:
{ "require": { "php": ">=5.3.0", "suin/php-image-resizer": ">=1.0.0" } }
How to Use
<?php use \Suin\ImageResizer\ImageResizer; $resizer = new ImageResizer('/path/to/your/image.jpeg'); if ( $resizer->maxWidth(480)->maxHeight(640)->resize() === false ) { // error } else { // success }
License
MIT License