Skip to content

Instantly share code, notes, and snippets.

@jasdeepkhalsa
Forked from anonymous/imageCropAdvanced.php
Created December 19, 2012 20:02
Show Gist options
  • Save jasdeepkhalsa/4339969 to your computer and use it in GitHub Desktop.
Save jasdeepkhalsa/4339969 to your computer and use it in GitHub Desktop.
Using PHP and GD to crop an image proportionally according to its aspect ratio. From: http://stackoverflow.com/questions/1855996/crop-image-in-php
<?php
$image = imagecreatefromjpeg($_GET['src']);
$filename = 'images/cropped_whatever.jpg';
$thumb_width = 200;
$thumb_height = 150;
$width = imagesx($image);
$height = imagesy($image);
$original_aspect = $width / $height;
$thumb_aspect = $thumb_width / $thumb_height;
if ( $original_aspect >= $thumb_aspect )
{
// If image is wider than thumbnail (in aspect ratio sense)
$new_height = $thumb_height;
$new_width = $width / ($height / $thumb_height);
}
else
{
// If the thumbnail is wider than the image
$new_width = $thumb_width;
$new_height = $height / ($width / $thumb_width);
}
$thumb = imagecreatetruecolor( $thumb_width, $thumb_height );
// Resize and crop
imagecopyresampled($thumb,
$image,
0 - ($new_width - $thumb_width) / 2, // Center the image horizontally
0 - ($new_height - $thumb_height) / 2, // Center the image vertically
0, 0,
$new_width, $new_height,
$width, $height);
imagejpeg($thumb, $filename, 80);
?>
@salvatorecapolupo
Copy link

The only, real working method to crop images in PHP. Thanks very much!

@rowcorl
Copy link

rowcorl commented Feb 24, 2016

Kudos!! to the designer of this site. Good job, I love it.

@rowcorl
Copy link

rowcorl commented Feb 24, 2016

Isn't there a way the individual comments can be replied upon a click of a button?

@jozefcipa
Copy link

Thanks, works great !

@alihossein
Copy link

thanks for this code.

@umbilu
Copy link

umbilu commented Apr 12, 2018

YOU ARE THE BEST

@abutaleb23
Copy link

wow :)

@stevehaze
Copy link

Wow, brilliant, thanks so much!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment