Click here to Skip to main content
15,886,578 members
Articles / Programming Languages / PHP

Cropping of Image from Center Co-ordinates

Rate me:
Please Sign up or sign in to vote.
3.67/5 (3 votes)
13 Jan 2013CPOL1 min read 16.1K   719   1  
Helpful to develop photo gallery
<?PHP
/**************************************************************************************
Author: S.M. Zamshed Farhan <zfprince@gmail.com>
LAST UPDATE: 2013-01-12
**************************************************************************************/
class CropCenter
{
	
	function crop_center($old_name, $new_name, $crop_width, $crop_height) {
	
		if(copy($old_name, $new_name)) {
		
			// READ WIDTH & HEIGHT OF ORIGINAL IMAGE
			list($current_width, $current_height) = getimagesize($new_name);
			
			// CENTER OF GIVEN IMAGE, WHERE WE WILL START THE CROPPING
			$left	=	($current_width / 2) - ($crop_width / 2);
			$top 	=	($current_height / 2) - ($crop_height / 2);
			
			// BUILD AN IMAGE WITH CROPPED PART
			$new_canvas = imagecreatetruecolor($crop_width, $crop_height);
			$new_image = imagecreatefromjpeg($new_name);
			imagecopy($new_canvas, $new_image, 0, 0, $left, $top, $current_width, $current_height);
			imagejpeg($new_canvas, $new_name, 100);
		
		} else {
			// Do Nothing
		}
		
		return true;
	}


}
?>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Bangladesh Bangladesh
I have received B.Sc. degree in Computer Science and Engineering from Khulna University of Engineering and Technology, (KUET) Bangladesh in 2003 and Master of Business Administration in Management from University of Dhaka, Bangladesh in 2009. I started my IT career as a Software Engineer at BDCOM Online Limited, then worked for BRAC BDMail Network Limited (bracNet). At present, I am working with Application Development, Integration and Maintenance department of the International Centre for Diarrhoeal Disease Research, Bangladesh (ICDDR,B) - an international health research organization located in Dhaka, Bangladesh, dedicated to saving lives through research and treatment.

Comments and Discussions