Login   Register  
PHP Classes
elePHPant
Icontem

File: README.md

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of amir hoseinian  >  Image Saver  >  README.md  >  Download  
File: README.md
Role: Documentation
Content type: text/plain
Description: Documentation
Class: Image Saver
Resize an image keeping the size proportions
Author: By
Last change:
Date: 2012-07-28 04:49
Size: 656 bytes
 

Contents

Class file image Download
ImageSaver
==========

	version 0.0.1  Created by Amir Hoseinian


Introduction
-----------------

this small class is built for 

- saving post images from html form in file system
- resizing images before saving them


Resizing
--------

- By width    resize(xxx,'auto')
- By height	  resize('auto',xxx)
- By both	  resize(xxx,xxx)

Usage
-----

	<?php

	define('APPLICATION_PATH', __DIR__);

	$imageSaver = new ImageSaver();
	$imageSaver->allowFileTypes = array("jpg","jpeg"); //defining allowed file types

	if(isset($_FILES['image'])){	
		$imageSaver->setImage($_FILES['image'])->setName('test')->setPath("\images\\")->resize('auto',300)->save();
	}