2017 © Pedro Peláez
 

library image-manager

Image Management Tool

image

centralapps/image-manager

Image Management Tool

  • Sunday, August 5, 2012
  • by mkpeacock
  • Repository
  • 1 Watchers
  • 1 Stars
  • 18 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

ImageManager

This is a simple tool for resizing, scaling, rendering and uploading images with PHP., (*1)

Installation

The easiest way to install this tool is using composer. Create the following composer.json file in the root of your project., (*2)

{
    "require": {
        "centralapps/image-manager": "dev-master"
    }
}

Then run composer to download and install the component., (*3)

$ curl -s https://getcomposer.org/installer | php
$ php composer.phar install

Usage

$imageTools = new \CentralApps\ImageManager\Tools();
$imageTools->loadFromFile('/var/www/original.png');
$imageTools->resizeScaleHeight(150);
$imageTools->save('/var/www/newfile.png');

The Versions

05/08 2012

dev-master

9999999-dev http://michaelpeacock.co.uk

Image Management Tool

  Sources   Download

MIT

The Requires

  • php >=5.3.0