How to crop a part of the image? If Maximum Size = The original size is working fine, but it does not work :(
Original photo size 300x423px
Maximum size (Photo size for cropping) 213x300px
$filename = '/test.jpg'; $image = imagecreatefromjpeg($filename); $x = 0; $y = 0; $width = 213; $height = 213; $new_width = 200; $new_height = 200; $thumb = imagecreatetruecolor($new_width, $new_height); imagecopyresampled($thumb, $image, 0, 0, $x, $y, $new_width, $new_height, $width, $height); header('Content-Type: image/jpeg'); imagejpeg($thumb, null, 90); 
