A super simple Image Resizer package for Fuel.
- Version: 1.0.0
- License: MIT License
- Author: Derek Myers
If you are installing this as a submodule (recommended) in your git repo root, run this command:
$ git submodule add git://github.com/dmyers/fuel-resizer.git fuel/packages/resizer
Then you you need to initialize and update the submodule:
$ git submodule update --init --recursive fuel/packages/resizer/
Alternatively you can download it and extract it into fuel/packages/resizer/
.
$image = Image_Resizer::forge('path/to/file.jpg');
$imgae->resize('48', '48');
$image->save();
In order to keep the package up to date simply run:
$ git submodule update --recursive fuel/packages/resizer/