Skip to content

A Kohana 3.3 module to quickly create resized / cropped images directly through url parameters.

Notifications You must be signed in to change notification settings

davecarlson/kohana-imagefly

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Imagefly

This module allows you to quickly create resized / cropped images directly through url parameters. Modified images are cached after the initial request and served up thereafter to help reduce server strain.

Demo

Click here to see the Imagefly demo.

Getting started

In your application/bootstrap.php file modify the call to Kohana::modules and include the image and imagefly modules.

Kohana::modules(array(
    ...
    'image'    => MODPATH.'image',
    'imagefly' => MODPATH.'imagefly',
    ...
));

[!!] The image module is requried for the Imagefly module to work.

Notes

  • Imagefly will not process images when the width and height prams are the same as the source
  • Images are scaled up if the supplied width or height params are lager then the source width or height
  • Don't forget to make your cache directory writable.
  • Inspired by the smart-lencioni-image-resizer by Joe Lencioni

Compatibility

Imagefly has been updated for Kohana 3.3

Configuration

The default config file is located in MODPATH/imagefly/config/imagefly.php. You should copy this file to APPPATH/config/imagefly.php and make changes there, in keeping with the cascading filesystem.

The Imagefly configuration file looks like this:

array(
    'cache_expire'     => string CACHE_EXPIRE,
    'cache_dir'        => string CACHE_DIR,
    'frame'            => FALSE,
	'source_dir'       => strong SOURCE_DIR,
    'mimic_source_dir' => string MIMIC_SOURCE_DIR,
    'enforce_presets'  => TRUE,
    'presets'          => array(
        'w320-h240-c',
    ),
),

Understanding each of these settings is important.

CACHE_EXPIRE
How long before the browser checks the server for a new version of the modified image. Default is 1 week (7 * 24 * 60 * 60)

CACHE_DIR
Path to the image cache directory you would like to use, don't forget the trailing slash!

SOURCE_DIR*
Path to the image directory you would like to use, don't forget the trailing slash!

MIMIC_SOURCE_DIR
Mimic the source file folder structure within the cache directory. Useful if you want to keep track of cached files and folders to perhaps periodically clear some cache folders but not others. Default TRUE

ENFORCE_PRESETS
Will only allow param configurations entered in the PRESETS array. Recommended for production sites to reduce the impact of spamming different sized images on the server.

PRESETS
Imagefly params to allow when ENFORCE_PRESETS is set to TRUE.

Usage Examples

Here are some examples of what you can do with Imagefly.

** Resize image to 300 x 200, and frame into a 300 x 300 square ** /imagefly/w300-h200-f/path/to/image.jpg

** Resize image to either 300 wide or 200 high , and frame into a 300 x 250 box (adding padding) ** /imagefly/w300-h200-r/path/to/image.jpg

Resize to exactly 100px width and height cropping from the center
/imagefly/w100-c/path/to/image.jpg
OR
/imagefly/h100-c/path/to/image.jpg

Resize to exactly 100px width and 150px height cropping from the center
/imagefly/w100-h150-c/path/to/image.jpg

Resize proportionally until width is 100 pixels
/imagefly/w100/path/to/image.jpg

Resize proportionally until height is 100 pixels
/imagefly/h100/path/to/image.jpg

Resize proportionally until either the width or height is 100 pixels, whichever comes first
/imagefly/w100-h100/path/to/image.jpg

About

A Kohana 3.3 module to quickly create resized / cropped images directly through url parameters.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 100.0%