Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The code below crops the image well, which is what i want, but for larger images, it wotn work as well. Is there any way of 'zooming out of the image'

Idealy i would be able to have each image roughly the same size before cropping so that i would get good results each time

Code is

<?php

$image = $_GET['src']; // the image to crop
$dest_image = 'images/cropped_whatever.jpg'; // make sure the directory is writeable

$img = imagecreatetruecolor('200','150');
$org_img = imagecreatefromjpeg($image);
$ims = getimagesize($image);
imagecopy($img,$org_img, 0, 0, 20, 20, 200, 150);
imagejpeg($img,$dest_image,90);
imagedestroy($img);
echo '<img src="'.$dest_image.'" ><p>';
share|improve this question
1  
Are you trying to create thumbnails? – Tatu Ulmanen Dec 6 '09 at 17:47
1  
yes i am trying to create thumbnails – user195257 Dec 6 '09 at 18:24

4 Answers

up vote 37 down vote accepted

If you are trying to generate thumbnails, you must first resize the image using imagecopyresampled();. You must resize the image so that the size of the smaller side of the image is equal to the corresponding side of the thumb.

For example, if your source image is 1280x800px and your thumb is 200x150px, you must resize your image to 240x150px and then crop it to 200x150px. This is so that the aspect ratio of the image won't change.

Here's a general formula for creating thumbnails:

$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);

Haven't tested this but it should work.

EDIT

Now tested and working.

share|improve this answer
Thanks for the help, but its not working, i cant see anything wrong with the code? – user195257 Dec 6 '09 at 18:23
Found a missing ;, but still didnt work, any advice? – user195257 Dec 6 '09 at 18:28
Got it to work kind of t-webdesign.co.uk/crop.php?src=http://extreme-showcase.com/… But its not working well vertically, any help? – user195257 Dec 6 '09 at 18:40
Thanks, still not giving the right results tho see above link , thankssss – user195257 Dec 6 '09 at 18:44
2  
Just replace $image = imagecreatefromjpeg($_GET['src']); with $image = imagecreatefromstring(file_get_contents($_GET['src']));. – Tatu Ulmanen Jan 26 '12 at 11:21
show 6 more comments
<?php
$dst_x = 0;
$dst_y = 0;
$src_x = 100; // Crop Start X
$src_y = 100; // Crop Srart Y
$dst_w = 160; // Thumb width
$dst_h = 120; // Thumb height
$src_w = 260; // $src_x + $dst_w
$src_h = 220; // $src_y + $dst_h

$dst_image = imagecreatetruecolor($dst_w,$dst_h);
$src_image = imagecreatefromjpeg("images/source.jpg");
imagecopyresampled($dst_image, $src_image, $dst_x, $dst_y, $src_x, $src_y, $dst_w, $dst_h, $src_w, $src_h);
imagejpeg($dst_image, "images/crop.jpg");
?>
share|improve this answer
3  
While a code only answer might work, it is best if the answer at least contains a little explanation of how it works, so that folks can understand the code without having to read and mentally interpret each line of code. – Fluffeh Sep 27 '12 at 10:28
$image = imagecreatefromjpeg($_GET['src']);
$filename = 'images/cropped_whatever.jpg'

Must be replaced with:

$image = imagecreatefromjpeg($_GET['src']);

Then it will work!

share|improve this answer

$image = imagecreatefromjpeg($_GET['src']);

needs to be replaced with this

$image = imagecreatefromjpeg('images/thumbnails/myimage.jpg');

imagecreatefromjpeg() is expecting a string.

This worked for me

ref:

http://php.net/manual/en/function.imagecreatefromjpeg.php

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.