suin/php-image-resizer

There is no license information available for the latest version (1.1.0) of this package.

A simple image resizing library for PHP.

1.1.0 2012-07-30 23:21 UTC

This package is auto-updated.

Last update: 2024-04-06 07:33:56 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