########################################################
# Script Info
# ===========
# Name: Image Resize
# Created: 12/05/04
# Modified: 24/05/04
# Author: Ash Young (ash@evoluted.net)
# Website: http://evoluted.net/
# Requirements: PHP with the GD Library
#
# Description
# ===========
# This class allows you to resize an image easily and
# quickly graphically using Javascript and PHP
#
# If you have any functions that you like to see 
# implemented in this script then please just send
# an email to ash@evoluted.net
#
# Limitations
# ===========
# - GIF Editing: this script will only edit gif files
#     your GD library allows this.
#
# - Requires Internet Explorer for graphical dragging
#   of image
#
# Usage
# =====
#
# 1) Extract content of zip file into a directory on you
#    web server.
#
# 2) CHANGE THE PERMISSIONS OF ANY FILES YOU ARE GOING TO EDIT
#    TO ALLOW THE SCRIPT TO WRITE TO THEM
#
# 3) Call resize.php supplying the path to the image you wish to edit.
#    For example http://yourdomain.com/resize.php?i=nohands.jpg
#
#    Be sure to include the full path from the script directory to the
#    image being edited. I.e if nohands.jpg was in the directory images/
#    you would have this:
#
#    http://yourdomain.com/resize.php?i=images/nohands.jpg
#
# 4) Edit the HTML in resize.php to suit your needs. Alternatively to 
#    include the image resizer in one of your pages do use the following
#    code:
#    
#    include("resize_inc.php");
#    resizeImg($_REQUEST['i']);
#
#    You must also include the following statement in the body tag of
#    your HTML page:
#
#    <body onLoad="init();">
#
########################################################