2017 © Pedro Peláez
 

library imageresizer

High-level image resizing library

image

gdaws/imageresizer

High-level image resizing library

  • Tuesday, January 6, 2015
  • by gdaws
  • Repository
  • 1 Watchers
  • 1 Stars
  • 101 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 6 Versions
  • 2 % Grown

The README.md

Image Resizing Library

High level image resizing library for PHP 5.3+, (*1)

Usage example:, (*2)

use Gdaws\ImageResizer\ResizerFacade;
use Gdaws\ImageResizer\Exception\ImageResizerException;

$resizer = new ResizerFacade();

try {

    $resizer->resize('in.jpg', 'out.jpg', array(
        "mode" => "crop",
        "width" => 100,
        "height" => 100,
        "quality" => 80
    ));
}
catch(ImageResizerException $exception) {

    echo $exception->getMessage();
}

Crop Mode

Scale and then crop the image., (*3)

Max Mode

Scale the image to tightly fit the output dimensions while preserving the aspect ratio., (*4)

Stretch Mode

Resize the image exactly to the dimensions specified., (*5)

Common Settings

These are common settings that affect the output image:, (*6)

  • width of image in pixels. The value must be greater than 0.
  • height of image in pixels. The value must be greater than 0.
  • quality sets the compression level. Accepts a value between 0 and 100.

It's possible to only specify one of the dimensions and let the resizer calculate the other dimension using the source image's aspect ratio., (*7)

The Versions

06/01 2015

dev-master

9999999-dev

High-level image resizing library

  Sources   Download

MIT

The Requires

 

The Development Requires

gd imagemagick thumbnail imageresizer

06/01 2015

v0.1.5

0.1.5.0

High-level image resizing library

  Sources   Download

MIT

The Requires

 

The Development Requires

gd imagemagick thumbnail imageresizer

24/06 2014

v0.1.4

0.1.4.0

High-level image resizing library

  Sources   Download

MIT

The Requires

 

The Development Requires

gd imagemagick thumbnail imageresizer

03/06 2014

v0.1.3

0.1.3.0

High-level image resizing library

  Sources   Download

MIT

The Requires

 

The Development Requires

gd imagemagick thumbnail imageresizer

28/03 2014

v0.1.2

0.1.2.0

High-level image resizing library

  Sources   Download

MIT

The Requires

 

The Development Requires

gd imagemagick thumbnail imageresizer

21/02 2014

v0.1.0

0.1.0.0

High-level image resizing library

  Sources   Download

MIT

The Requires

 

The Development Requires

gd imagemagick thumbnail imageresizer