Skip to content

dgram/zf2-imageresizer

 
 

Repository files navigation

TckImageResizer

Build Status Latest Stable Version Total Downloads License

This ZF2 module, once enabled, allows image resizing and manipulation by url.

Requirements

Installation via Composer

Define dependencies in your composer.json file

{
	"require": {
        "tck/zf2-imageresizer": "1.*"
    }
}

Post installation

  1. Enabling it in your application.config.php file.

    <?php
    return array(
        'modules' => array(
            // ...
            'TckImageResizer',
        ),
        // ...
    );
  2. Create "processed" folder in "public" folder.

Usage

Basic Syntax

All files in public folder

  • folder/filename.ext
  • processed/folder/filename.$command1,param1,param2$command2.ext

Example: Create a thumbnail and grayscale image

  • img/logo.jpg
  • processed/img/logo.$thumb,160,120$grayscale.jpg

Command list

  • thumb(width, height)
  • resize(width, height)
  • grayscale
  • negative
  • gamma(correction)
  • colorize(hexColor)
  • sharpen
  • blur(sigma = 1)

Own commands possible - example place a watermark (Todo Documentation)

Goals / Todos

  • View Helper
  • More commands
  • More command options
  • Administrative functions
  • ...

About

This ZF2 module allows image resizing and manipulation by url.

Resources

License

Stars

Watchers

Forks

Packages

No packages published