2017 © Pedro Peláez
 

library image-resize

Image resizing library

image

alexantr/image-resize

Image resizing library

  • Monday, November 27, 2017
  • by alexantr
  • Repository
  • 1 Watchers
  • 0 Stars
  • 383 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 9 Versions
  • 7 % Grown

The README.md

ImageResize

Image resizing library. Creates images on demand using GD., (*1)

Install

Install through Composer:, (*2)

composer require alexantr/image-resize

Examples

See full list of examples in example folder., (*3)

Creating URLs:, (*4)

use Alexantr\ImageResize\Image;

$src1 = Image::init('uploads/pic.jpg')->crop(200, 200);
$src2 = Image::init('uploads/pic.jpg')->silhouette()->quality(95)->fit(200, 200);
$src3 = Image::init('uploads/pic.jpg')->fitWidth(200);
$src4 = Image::init('uploads/pic.jpg')->fitHeight(200);
$src5 = Image::init('/site/uploads/pic.jpg')->bgColor('6af')->fill(200, 200);

Can use class member access on instantiation in PHP 5.4 or higher:, (*5)

<img src="<?= (new Image('uploads/pic.jpg'))->crop(200, 200) ?>" alt="">

Creator example

Apache .htacces file:, (*6)

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^resized/(.*)$ image.php?path=$1 [L]

image.php in web root folder:, (*7)

require '../vendor/autoload.php';

$webroot = __DIR__;
$path = isset($_GET['path']) ? $_GET['path'] : '';

Alexantr\ImageResize\Creator::create($webroot, $path);

The Versions

27/11 2017

dev-master

9999999-dev

Image resizing library

  Sources   Download

MIT

The Requires

  • php >=5.3.0
  • ext-gd *
  • ext-fileinfo *
  • ext-mbstring *

 

image gd thumbnail

27/11 2017

v1.0.7

1.0.7.0

Image resizing library

  Sources   Download

MIT

The Requires

  • php >=5.3.0
  • ext-gd *
  • ext-fileinfo *
  • ext-mbstring *

 

image gd thumbnail

02/03 2017

v1.0.6

1.0.6.0

Image resizing library

  Sources   Download

MIT

The Requires

  • php >=5.3.0
  • ext-gd *
  • ext-fileinfo *
  • ext-mbstring *

 

image gd thumbnail

01/06 2016

v1.0.5

1.0.5.0

Image resizing library

  Sources   Download

MIT

The Requires

  • php >=5.3.0
  • ext-gd *
  • ext-fileinfo *
  • ext-mbstring *

 

image gd thumbnail

01/06 2016

v1.0.4

1.0.4.0

Image resizing library

  Sources   Download

MIT

The Requires

  • php >=5.3.0
  • ext-gd *
  • ext-fileinfo *
  • ext-mbstring *

 

image gd thumbnail

16/05 2016

v1.0.3

1.0.3.0

Image resizing library

  Sources   Download

MIT

The Requires

  • php >=5.3.0
  • ext-gd *
  • ext-fileinfo *
  • ext-mbstring *

 

image gd thumbnail

29/02 2016

v1.0.2

1.0.2.0

Image resizing library

  Sources   Download

MIT

The Requires

  • php >=5.3.0
  • ext-gd *
  • ext-fileinfo *
  • ext-mbstring *

 

image gd thumbnail

23/01 2016

v1.0.1

1.0.1.0

Image resizing library

  Sources   Download

MIT

The Requires

  • php >=5.3.0
  • ext-gd *
  • ext-fileinfo *
  • ext-mbstring *

 

image gd thumbnail

08/12 2015

v1.0

1.0.0.0

Image resizing library

  Sources   Download

MIT

The Requires

  • php >=5.3.0
  • ext-gd *
  • ext-fileinfo *
  • ext-mbstring *

 

image gd thumbnail