Would you like to upload an image and apply a frame over it? How about uploading an image and making it have round corners, similar to the image below:
 
Round corner image
80045
 

This can all be done within minutes! For this example I will be upload an abstract image (you can download this file here: http://www.ndesign-studio.com/images/portfolio/illustration/abstract-virus-1.jpg) and apply a brown frame to it, resulting in the following image:
 
Final framed image
80046
 

The following PNG image will be used as the frame (you can create your own frames, just be sure to leave the view area transparent, e.g. for the rounded image, you will create the edges as a frame, and when overlayed on the image, it will create the rounded image effect. I've attached this image for reference.):
 
PNG frame
80047
 

1
Download the class library

Firstly, download the class that will handle the image upload and the image processing functions. You can download it here: http://www.hotscripts.com/Detailed/45364.html or at PHP Classes: http://www.phpclasses.org/browse/package/2181.html


2
Create a simple upload form

For this step, create a simple upload form in HTML. For this example I'm using a very simple form, you can change this to suit your needs:

1:
2:
3:
4:
5:
<form action="upload.php" method="post" enctype="multipart/form-data">
<input type="file" name="file" />
<input type="submit" value="Upload" />
</form>



3
Creating the upload.php file


Now to create the file that will do all the work. Before you do this, ensure the frame image is in the same directory. Create the upload.php document and add the following code to it:

1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
<?php
 
include('class.upload.php');
 
$handle = new Upload($_FILES['file']);
if ($handle->uploaded) {
	$handle->image_resize = true;
	$handle->image_x = 283;
	$handle->image_y = 221;
	$handle->image_ratio_crop = true;
	$handle->jpeg_quality = 100;
	$handle->image_watermark = 'frame.png';
 
	$handle->Process('./');
	if ($handle->processed) {
		$filename = $handle->file_dst_name;
	}else{
		echo 'Error: ' . $handle->error . '';
	}
	$handle-> Clean();
}else{
	echo 'Error: ' . $handle->error . '';
}
 
?>


Firstly, you include the class file you downloaded that will handle the image functions. You can find more information about the available properties in the class file, but for this one we resize the image to the same size as the frame, and crop any overflow. We then use the watermark property to specify the location of the frame.

The resulting image name is then saved in the $filename variable, which you may use to insert into a database, redirect the user to it, etc.


I've used this script and it works beautifully on both Windows and *nix systems.
 
Rounded frame sample
Rounded frame sample