Code Monkey home page Code Monkey logo

cakeimagecropresize's Introduction

CakeImageCropResize

A small CakePHP plugin for resizing and cropping of images. Includes a Helper and Component.

The Helper and/or Component gives you the ability to leave your original images in tact and resize/crop them for View only.

Requirements

The master branch has the following requirements:

  • CakePHP 2.2.0 or greater.
  • PHP 5.3.0 or greater.

Installation

  • Clone/Copy the files in this directory into app/Plugin/ImageCropResize
  • Ensure the plugin is loaded in app/Config/bootstrap.php by calling CakePlugin::load('ImageCropResize');
  • Include the component in your AppController.php:
    • public $components = array('ImageCropResize.Image');
  • Or include the helper in your AppController.php:
    • public $helpers = array('ImageCropResize.Image');

Documentation

Both the Helper and Component have resize method that can be used as follow:

$options = array(
	'width'				=> null,	//Width of the new Image, Default is Original Width
	'height'			=> null,	//Height of the new Image, Default is Original Height
	'aspect'			=> true,	//Keep aspect ratio
	'crop'				=> false,	//Crop the Image
	'cropvars'			=> array(), //How to crop the image, array($startx, $starty, $endx, $endy);
	'autocrop'			=> false,	//Auto crop the image, calculate the crop according to the size and crop from the middle
	'htmlAttributes'	=> array(),	//Html attributes for the image tag
	'quality'			=> 90,		//Quality of the image
	'urlOnly'			=> false	//Return only the URL or return the Image tag
);

echo $this->Image->resize($imagePath, $options);

The resized image will be cached inside the webroot/img/cache directory. So we only have cached images inside or webroot and leave the originals outside the webroot.

cakeimagecropresize's People

Contributors

bradcrumb avatar rockfreak avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.