olivemedia/php-image-resizer

A simple image resizing library for PHP.

1.6 2019-12-29 11:53 UTC

This package is auto-updated.

Last update: 2024-04-29 02:38:23 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